Back to project page egotrip.
The source code is released under:
Apache License
If you think the Android project egotrip 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 net.myegotrip.egotrip.profile; //from ww w . j a v a 2s. co m import net.myegotrip.egotrip.R; import android.os.Bundle; import android.preference.PreferenceActivity; public class ProfilePrefActivity extends PreferenceActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.profile_preferences); } }