Back to project page cellmatica.
The source code is released under:
GNU General Public License
If you think the Android project cellmatica 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.ensdac.cellmatica; //from ww w . j ava2 s . c o m import android.app.Activity; import android.net.Uri; import android.os.Bundle; import android.preference.PreferenceFragment; import android.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; 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); } }