android listPreferences xml中的条目和条目值有什么区别?

前端之家收集整理的这篇文章主要介绍了android listPreferences xml中的条目和条目值有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的代码

它们如何不同以及哪些值会显示在对话框中?

<ListPreference
    android:entryValues="@array/level"
    android:entries="@array/level"
    android:key="pref_numberOfChoices"
    android:persistent="true"
    android:summary="@string/level_description"
    android:title="@string/level_title"
    android:defaultValue="3"/>

解决方法

你可以查看关于 ListPreference的官方文档.

android:entries The human-readable array to present as a list.

android:entryValues The array to find the value to save for a
preference when an entry from entries is selected.

换句话说:条目是您在列表中看到的条目,entryValues是您在使用相应条目值执行某些操作时要保存的值.

原文链接:https://www.f2er.com/android/317523.html

猜你在找的Android相关文章