如何在Android中创建和获取偏好值

时间:2014-11-20 08:08:52

标签: android

代码:https://github.com/DanSolomon/CMSC434-Clock

在单独的设置活动中有一个首选项(在xml / pref_general.xml中)。我需要能够存储首选项的当前值并获取主活动中的值。

我无法弄清楚它是否正确存储了值,如果是,那么如何从存储中获取值。

1 个答案:

答案 0 :(得分:0)

它位于SettingsActivity:

PreferenceManager .getDefaultSharedPreferences(preference.getContext()) .getString(preference.getKey(), ""));

而preference.getKey()是xml定义中的键。