Back to project page HashQanda.
The source code is released under:
GNU General Public License
If you think the Android project HashQanda 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 au.com.infiniterecursion.hashqanda; /* w ww . java2 s. co m*/ import android.os.Bundle; import android.preference.PreferenceActivity; import android.util.Log; /* * Preferences * * AUTHORS: * * Andy Nicholson * * 2010 * Copyright Infinite Recursion Pty Ltd. * http://www.infiniterecursion.com.au */ public class PreferencesActivity extends PreferenceActivity { private static final String TAG = "hashqanda"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.preferences); Log.d(TAG, " preferences onCreate"); } }