List of usage examples for android.support.v4.preference PreferenceManager getDefaultSharedPreferences
public static SharedPreferences getDefaultSharedPreferences(Context context)
From source file:com.github.preferencefragment.preference.LaunchingPreferences.java
private void updateCounterText() { // Since we're in the same package, we can use this context to get // the default shared preferences SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this); final int counter = sharedPref.getInt(AdvancedPreferences.KEY_MY_PREFERENCE, 0); mCounterText.setText(getString(R.string.counter_value_is) + " " + counter); }