在我的应用中,我有以下值:
<ListPreference
android:key="font_setting"
android:title="@string/font"
android:summary="%s"
android:entries="@array/font_list"
android:entryValues="@array/font_list_values"
android:dialogTitle="@string/choose_font" />
和数据:
<string-array name="font_list">
<item>"Small"</item>
<item>"Medium"</item>
<item>"Big"</item>
</string-array>
<integer-array name="font_list_values">
<item>1</item>
<item>2</item>
<item>3</item>
</integer-array>
但是当我选择一个值时,应用程序崩溃,就会出现错误:
java.lang.NullPointerException
at android.preference.ListPreference.onDialogClosed(ListPreference.java:264)
我发现这实际上是一个非常古老的问题here。令人惊讶的是,谷歌刚刚说它不是一个bug而且没有修复?有人有建议吗? 这是在Android 4.0版中测试的。
答案 0 :(得分:5)
为什么不在代码中使用字符串数组并稍后转换为整数(Integer.valueOf()
):
<string-array name="font_list_values">
<item>1</item>
<item>2</item>
<item>3</item>
</string-array>
答案 1 :(得分:2)
这个bug似乎以某种方式变老了。我也遇到过这个问题。只需使用字符串数组并使用Integer.valueOf()
解析它们。