溫馨提示×

android preference怎樣設(shè)置選項類型

小樊
81
2024-11-19 10:01:42
欄目: 編程語言

在Android中,設(shè)置Preference的選項類型需要使用Preference.Type枚舉。以下是如何設(shè)置不同類型的Preference的示例:

  1. 設(shè)置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>
  1. 設(shè)置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>
  1. 設(shè)置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>
  1. 設(shè)置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>
  1. 設(shè)置Preference.Type.LIST類型的Preference:

首先,在res/xml目錄下創(chuàng)建一個名為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>

這樣,你就可以在應(yīng)用中使用一個包含三個選項的下拉列表Preference了。

0