Back to project page TuxRemote.
The source code is released under:
GNU General Public License
If you think the Android project TuxRemote 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.tuxremote.app; /*from www. j av a 2 s . com*/ import android.os.Bundle; import android.preference.PreferenceActivity; import android.preference.PreferenceFragment; public class Preference extends PreferenceActivity { public static final String TAG="SettingsFragment"; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.preference); } public static Preference newInstance() { return new Preference(); } }