Back to project page mTorch.
The source code is released under:
MIT License
If you think the Android project mTorch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.wkovacs64.mtorch; //from w w w . jav a2 s. c om import android.os.Bundle; import android.preference.PreferenceActivity; import android.util.Log; public class SettingsActivity extends PreferenceActivity { private static final String TAG = SettingsActivity.class.getSimpleName(); @SuppressWarnings("deprecation") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Log.d(TAG, "********** Settings **********"); addPreferencesFromResource(R.xml.settings); } }