Back to project page Replica-Jump.
The source code is released under:
GNU General Public License
If you think the Android project Replica-Jump 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.vinicius.dsl.replicajump.util; // w w w . j a v a 2 s . c om import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; public class Preferences { private static String name = "Geo"; public static void putString(String tag,String valor,Context contexto){ SharedPreferences pref = contexto.getSharedPreferences(name, Context.MODE_PRIVATE); Editor edit = pref.edit(); edit.putString(tag, valor); edit.commit(); } public static void putInt(String tag,int valor,Context contexto){ SharedPreferences pref = contexto.getSharedPreferences(name, Context.MODE_PRIVATE); Editor edit = pref.edit(); edit.putInt(tag, valor); edit.commit(); } public static void putBoolean(String tag,boolean valor,Context contexto){ SharedPreferences pref = contexto.getSharedPreferences(name, Context.MODE_PRIVATE); Editor edit = pref.edit(); edit.putBoolean(tag, valor); edit.commit(); } public static String getString(String tag,Context contexto){ SharedPreferences pref = contexto.getSharedPreferences(name, Context.MODE_PRIVATE); return pref.getString(tag, "nulo"); } public static int getInt(String tag,Context contexto){ SharedPreferences pref = contexto.getSharedPreferences(name, Context.MODE_PRIVATE); return pref.getInt(tag, 0); } public static boolean getBoolean(String tag,Context contexto){ SharedPreferences pref = contexto.getSharedPreferences(name, Context.MODE_PRIVATE); return pref.getBoolean(tag, false); } }