Back to project page droid-fake-road.
The source code is released under:
Apache License
If you think the Android project droid-fake-road 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 mobi.droid.fakeroad.ui.activity; /*from w ww .j a v a 2 s .com*/ import android.os.Bundle; import android.preference.PreferenceActivity; import mobi.droid.fakeroad.R; /** * @author ak */ public class PreferencesActivity extends PreferenceActivity{ @SuppressWarnings("deprecation") public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.app_prefs); } }