0

您好,我在我的应用程序 2 活动中,我希望当我在它们之间切换时,用户界面和变量不会改变,有什么办法可以做到这一点。

谢谢您的帮助

4

2 回答 2

1

SharedPreferences 似乎是您实现它的最简单方法,因为您可以使用 SharedPreferences 方法永久保存任何内容(嗯,任何基本数据类型)。

/**
 * Retrieves data from sharedpreferences
 * @param c the application context
 * @param pref the preference to be retrieved
 * @return the stored JSON-formatted String containing the data 
 */
public static String getStoredJSONData(Context c, String pref) {
    if (c != null) {
        SharedPreferences sPrefs = c.getSharedPreferences("AppPreferences", Context.MODE_PRIVATE);
        return sPrefs.getString(pref, null);
    }
    return null;
}

/**
* Stores the most recent data into sharedpreferences
* @param c the application context
* @param pref the preference to be stored
* @param policyData the data to be stored
*/
public static void setStoredJSONData(Context c, String pref, String policyData) {
    if (c != null) {
        SharedPreferences sPrefs = c.getSharedPreferences("AppPreferences", Context.MODE_PRIVATE);
        SharedPreferences.Editor editor = sPrefs.edit();
        editor.putString(pref, policyData);
        editor.commit();
    }
}

其中字符串 'pref' 是用于引用该特定数据的标签,例如:“taylor.matt.data1”将引用一段数据,可用于从 SharedPreferences 检索或存储它。

于 2013-03-28T14:03:12.510 回答
1

如果您想保存原始数据类型(字符串、整数、布尔值等),请使用 SharedPreferences,这将永久保存您的值,直到用户重新安装(清除数据)应用程序。共享首选项的工作原理是这样的

// save string in sharedPreferences
SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
                    SharedPreferences.Editor editor = settings.edit();
                    editor.putString("some_key", string); // here string is the value you want to save
                    editor.commit(); 

// 恢复 sharedPreferences 中的字符串

SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
string = settings.getString("some_key", "");
于 2013-03-28T14:05:02.667 回答