我有一个prefs.xml
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<CheckBoxPreference
android:title="aaa"
android:defaultValue="true"
android:key="checkbox"
android:summary=""/>
<CheckBoxPreference
android:title="bbb"
android:defaultValue="true"
android:key="checkbox1"
android:summary=""/>
<ListPreference
android:title="first page"
android:key="first_page"
android:summary="ccc"
android:defaultValue="3"
android:entries="@array/list"
android:entryValues="@array/lvalues"
></ListPreference>
</PreferenceScreen>
array.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="list">
<item >1</item>
<item >2</item>
<item >3</item>
<item >4</item>
</string-array>
<string-array name="lvalues">
<item >1</item>
<item >2</item>
<item >3</item>
<item >4</item>
</string-array>
</resources>
我希望在&#34;开关中使用ListPreference中的入门值 - 案例&#34;在主java类中,为了使用它来显示第一页根据用户的喜好。 我怎样才能做到这一点? 非常感谢您的帮助!