在Android中,设置Preference的选项类型需要使用Preference.Type
枚举。以下是如何设置不同类型的Preference的示例:
Preference.Type.BOOLEAN
类型的Preference:<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBoxPreference
android:key="bool_preference"
android:title="Boolean Preference"
android:summary="Check this box to enable or disable the preference"
android:defaultValue="true"
android:type="boolean" />
</PreferenceScreen>
Preference.Type.NUMBER
类型的Preference:<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<EditTextPreference
android:key="number_preference"
android:title="Number Preference"
android:summary="Enter a number"
android:defaultValue="0"
android:inputType="number"
android:type="number" />
</PreferenceScreen>
Preference.Type.STRING
类型的Preference:<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<EditTextPreference
android:key="string_preference"
android:title="String Preference"
android:summary="Enter a string"
android:defaultValue="Default String"
android:type="string" />
</PreferenceScreen>
Preference.Type.URI
类型的Preference:<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<EditTextPreference
android:key="uri_preference"
android:title="URI Preference"
android:summary="Enter a URI"
android:defaultValue="https://www.example.com"
android:type="uri" />
</PreferenceScreen>
Preference.Type.LIST
类型的Preference:首先,在res/xml
目录下创建一个名为preferences_list.xml
的文件,用于定义列表项:
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<ListPreference
android:key="list_preference"
android:title="List Preference"
android:summary="Choose an option"
android:defaultValue="option1"
android:entries="@array/list_entries"
android:entryValues="@array/list_entry_values"
android:type="list" />
</PreferenceScreen>
接下来,在res/values
目录下的arrays.xml
文件中定义列表项和条目值:
<resources>
<string-array name="list_entries">
<item>Option 1</item>
<item>Option 2</item>
<item>Option 3</item>
</string-array>
<string-array name="list_entry_values">
<item>option1</item>
<item>option2</item>
<item>option3</item>
</string-array>
</resources>
这样,你就可以在应用中使用一个包含三个选项的下拉列表Preference了。