Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Preferences.xml 文件夹中有一个列表首选项。在我的代码中,我想查看从 List Preference 中选择了哪个首选项,并在特定条件下使用它。有什么方法可以检查这个吗?如果没有,任何人都可以给我一个正确方向的指针。
非常感谢,
XcutionX
您应该在 XML 中使用android:key="pref_mykey".
android:key="pref_mykey"
然后,您可以像这样检索值:
SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this); String myPref = sharedPref.getString("pref_mykey", "default_value");
有关更多信息,我建议阅读设置指南,特别是阅读首选项。