Android examples for android.content:SharedPreferences
get Shared Preferences
import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { public static SharedPreferences getSharedPreferences(Context context) { SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context); return sharedPreferences; }// w w w. jav a 2s. c o m }