我有一个PreferenceScreen:
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="Example"
android:key="options">
<ListPreference
android:title="I am an example"
android:summary="Pick One"
android:key="val"
android:entries="@array/optionVals"
android:entryValues="@array/optionVals" />
</PreferenceCategory>
按此按钮打开一个带有复选框的对话框,我的选项正常工作。我想在新的首选项页面中打开列表,或者只显示此页面上的列表。无论哪种方式,只需以最简单的方式从对话框中获取值。谢谢你的帮助。