Back to project page steamchat.
The source code is released under:
Apache License
If you think the Android project steamchat 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.kevelbreh.steamchat.fragment; /*ww w . jav a 2 s . c o m*/ import android.os.Bundle; import android.preference.PreferenceFragment; import com.kevelbreh.steamchat.R; /** * Stock settings fragment for our shared preferences interface. */ public class SettingsFragment extends PreferenceFragment { /** * Preference key returned boolean value of whether the hide offline contacts or not. */ public static final String PREF_FRIENDS_HIDE_OFFLINE = "pref_friends_hide_offline"; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.preferences); } }