Back to project page oec_android.
The source code is released under:
MIT License
If you think the Android project oec_android 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.biekerwebdesign.settings; /*from ww w .j a v a 2 s . c o m*/ import android.content.SharedPreferences; import android.os.Bundle; import android.preference.PreferenceFragment; import com.biekerwebdesign.openexoplanetcatalogue.R; /** * Created by Bieker on 12/16/13. */ public class SettingsFragment extends PreferenceFragment { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Load the preferences from an XML resource addPreferencesFromResource(R.xml.preferences); } }