其他分享
首页 > 其他分享> > 确定之前是否设置了Android首选项

确定之前是否设置了Android首选项

作者:互联网

我有一个应用程序,它将具有不同语言的UI文本.我不想将其保存在strings.xml中,因为我希望用户能够更改它们(而不依赖于电话的语言环境).

我设置了首选项来阅读此内容.默认情况下,我希望UI接受区域设置值,但是如果用户更改了UI lang首选项,则希望它使用该值.

有什么方法可以确定先前是否设置了首选项?关键是,getInt使我设置了默认值,因此,我无法检查(例如)uiLang == null来确定是否设置了首选项.

SharedPreferences settings = getPreferences(MODE_PRIVATE);
//If uiLang has not been set before, then lets use the locale.
uiLang = settings.getInt("uiLang", 1);  //English (=1) es default
myUI = new UIText(uiLang);
myTextView.setText(myUI.title);

解决方法:

您可以使用“包含”方法进行检查:

http://developer.android.com/reference/android/content/SharedPreferences.html#contains%28java.lang.String%29

标签:locale,preferences,android-preferences,android
来源: https://codeday.me/bug/20191102/1991932.html