Back to project page MythTrack.
The source code is released under:
MIT License
If you think the Android project MythTrack listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * SettingsFragment allows the user to set their preferences for the functionality of certain * aspects of the app.//from w w w. ja v a2 s . c o m * * @author Nolan Jurgens */ package nolanjurgens.mythtrack.app; // IMPORTS ///////////////////////////////////////////////////////////////////////////////////////// import android.os.Bundle; import android.preference.PreferenceFragment; import nolanjurgens.mythtrack.R; //////////////////////////////////////////////////////////////////////////////////////////////////// // CLASS - SettingsFragment // //////////////////////////////////////////////////////////////////////////////////////////////////// public class SettingsFragment extends PreferenceFragment { // METHODS /////////////////////////////////////////////////////////////////////////////////////// @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.preferences); } }