`
huangqinqin
  • 浏览: 369306 次
  • 性别: Icon_minigender_2
  • 来自: 福州
社区版块
存档分类
最新评论

ListPreference

阅读更多
preference_with_value.xml:  
 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:minHeight="?android:attr/listPreferredItemHeight" 
    android:gravity="center_vertical" 
    android:paddingRight="?android:attr/scrollbarSize">  
 
    <RelativeLayout  
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_marginLeft="15dip" 
        android:layout_marginRight="6dip" 
        android:layout_marginTop="6dip" 
        android:layout_marginBottom="6dip" 
        android:layout_weight="1">  
 
        <LinearLayout  
            android:id="@+id/preference_first_line" 
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:gravity="center_vertical">  
 
            <TextView android:id="@+android:id/title" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:layout_marginRight="15dip" 
                android:layout_weight="1" 
                android:singleLine="true" 
                android:textAppearance="?android:attr/textAppearanceLarge" 
                android:ellipsize="marquee" 
                android:fadingEdge="horizontal" />  
      
            <TextView android:id="@+id/preference_value" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:layout_weight="10" 
                android:singleLine="true" 
                android:textAppearance="?android:attr/textAppearanceSmall" 
                android:gravity="right" 
                android:ellipsize="end" />  
 
        </LinearLayout>  
 
        <TextView android:id="@+android:id/summary" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:layout_below="@id/preference_first_line" 
            android:layout_alignLeft="@android:id/title" 
            android:textAppearance="?android:attr/textAppearanceSmall" 
            android:maxLines="2" />  
 
    </RelativeLayout>  
 
</LinearLayout>  
 
Code in Activity:  
 
final ListPreference listPref = ...  
listPref.setLayoutResource(R.layout.preference_with_value);  
listPref.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {  
    public boolean onPreferenceChange(Preference preference, Object newValue) {  
        TextView textView = (TextView) findViewById(R.id.preference_value);  
        int index = listPref.findIndexOfValue(newValue.toString());  
        if (index != -1) {  
            textView.setText(listPref.getEntries()[index]);  
        }  
        return true;  
    }  
});  
 
We can also write ListPreferenceWithValue and EditTextPreferenceWithValue classes to automate the above code:  
package com.example;  
 
import android.content.Context;  
import android.preference.EditTextPreference;  
import android.util.AttributeSet;  
import android.view.View;  
import android.widget.TextView;  
 
public class EditTextPreferenceWithValue extends EditTextPreference {  
 
    private TextView mValueText;  
 
    public EditTextPreferenceWithValue(Context context, AttributeSet attrs) {  
        super(context, attrs);  
        setLayoutResource(R.layout.preference_with_value);  
    }  
 
    public EditTextPreferenceWithValue(Context context) {  
        super(context);  
        setLayoutResource(R.layout.preference_with_value);  
    }  
 
    @Override 
    protected void onBindView(View view) {  
        super.onBindView(view);  
        mValueText = (TextView) view.findViewById(R.id.preference_value);  
        if (mValueText != null) {  
            mValueText.setText(getText());  
        }  
    }  
 
    @Override 
    public void setText(String text) {  
        super.setText(text);  
        if (mValueText != null) {  
            mValueText.setText(getText());  
        }  
    }  
 


preference_with_value.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:minHeight="?android:attr/listPreferredItemHeight"
    android:gravity="center_vertical"
    android:paddingRight="?android:attr/scrollbarSize">

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="15dip"
        android:layout_marginRight="6dip"
        android:layout_marginTop="6dip"
        android:layout_marginBottom="6dip"
        android:layout_weight="1">

        <LinearLayout
            android:id="@+id/preference_first_line"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center_vertical">

            <TextView android:id="@+android:id/title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="15dip"
                android:layout_weight="1"
                android:singleLine="true"
                android:textAppearance="?android:attr/textAppearanceLarge"
                android:ellipsize="marquee"
                android:fadingEdge="horizontal" />
   
            <TextView android:id="@+id/preference_value"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="10"
                android:singleLine="true"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:gravity="right"
                android:ellipsize="end" />

        </LinearLayout>

        <TextView android:id="@+android:id/summary"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/preference_first_line"
            android:layout_alignLeft="@android:id/title"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:maxLines="2" />

    </RelativeLayout>

</LinearLayout>

Code in Activity:

final ListPreference listPref = ...
listPref.setLayoutResource(R.layout.preference_with_value);
listPref.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
    public boolean onPreferenceChange(Preference preference, Object newValue) {
        TextView textView = (TextView) findViewById(R.id.preference_value);
        int index = listPref.findIndexOfValue(newValue.toString());
        if (index != -1) {
            textView.setText(listPref.getEntries()[index]);
        }
        return true;
    }
});

We can also write ListPreferenceWithValue and EditTextPreferenceWithValue classes to automate the above code:
package com.example;

import android.content.Context;
import android.preference.EditTextPreference;
import android.util.AttributeSet;
import android.view.View;
import android.widget.TextView;

public class EditTextPreferenceWithValue extends EditTextPreference {

    private TextView mValueText;

    public EditTextPreferenceWithValue(Context context, AttributeSet attrs) {
        super(context, attrs);
        setLayoutResource(R.layout.preference_with_value);
    }

    public EditTextPreferenceWithValue(Context context) {
        super(context);
        setLayoutResource(R.layout.preference_with_value);
    }

    @Override
    protected void onBindView(View view) {
        super.onBindView(view);
        mValueText = (TextView) view.findViewById(R.id.preference_value);
        if (mValueText != null) {
            mValueText.setText(getText());
        }
    }

    @Override
    public void setText(String text) {
        super.setText(text);
        if (mValueText != null) {
            mValueText.setText(getText());
        }
    }

}



Android Preference API already provide a unified UI style for preferences. However, for ListPreference, I feel some inconvenience about its default behaviors:

In the preference screen, the user can't see the current selected value of a ListPreference;
When the user selects an item in a list preference popup, the popup is dismissed immediately, without any UI feedback about which item has been selected.
I noticed that some applications change the behavior by displaying the current selected value in the place of the summary of the preference, which looks better to me. However, this causes there's no place to display the summary.

I think it might be better to display the current selected value at the right side of the ListPreference.

EditTextPreference has the similar problems.
分享到:
评论

相关推荐

    TestPreference修复ListPreference属性无法使用问题

    标题"TestPreference修复ListPreference属性无法使用问题"表明存在一个关于`ListPreference`的故障,可能表现为无法显示列表、无法保存用户选择或者在界面中显示异常。这个问题可能是由于多种原因造成的,包括但不...

    Android中Fragmen首选项使用自定义的ListPreference的方法

    `PreferenceFragment` 是 `Fragment` 的一个子类,专门用于展示用户设置界面,通常包含各种`Preference` 类型,如 `CheckBoxPreference`, `ListPreference`, `EditTextPreference` 等。`ListPreference` 是一个特殊...

    SimpleCustomListPreference:Android 简单自定义 ListPreference

    在Android开发中,`ListPreference`是一个非常常用的控件,用于展示一个下拉选择列表,通常用于设置应用的偏好选项。然而,原生的`ListPreference`存在一些限制,例如它不支持添加、修改或删除选项。为了克服这些...

    Android背景音乐设置代码

    - 创建一个`res/xml/preferences.xml`文件,定义一个`ListPreference`,用于展示SD卡上的音乐文件列表。 - 在`ListPreference`的`entries`属性中填写音乐文件的名称,`entryValues`属性则保存对应的文件路径。 2....

    android各种Preference的使用

    本篇文章将详细讲解如何在Android中使用各种类型的Preference,特别是ListPreference。 首先,我们来看一下ListPreference的使用。ListPreference在Android中用于创建一个下拉列表供用户选择。在Listing 11–1中...

    Android中Preference的使用以及监听事件分析

    Preference家族包括多种类型,如CheckBoxPreference(复选框)、SwitchPreference(开关按钮)、EditTextPreference(文本输入框)、ListPreference(列表选择)等。每种类型对应不同的用户交互方式,开发者可以根据...

    Android PrefereceActivity实例

    ListPreference listPref = (ListPreference) preference; int index = listPref.findIndexOfValue(listPref.getValue()); String selected = listPref.getEntries()[index].toString(); // 处理用户选择 } ...

    第8章--Android的安全性和首选项.pptx

    PreferenceScreen 元素可以包含多个首选项项目,每个首选项项目都可以是 ListPreference、CheckBoxPreference、EditTextPreference 或 RingtonePreference 等类型。 8.4 本章小结 本章讨论了 Android SDK 的两个...

    Android软件开发11-12[整理].pdf

    在Android开发中,PreferenceActivity配合一系列的Preference子类,如CheckBoxPreference、EditTextPreference、ListPreference和RingtonePreference,可以轻松构建各种常见的设置选项。以下是对这些组件的详细介绍...

    Android Preference组件使用

    Preference主要实现一些配置数据,一些我们上次...Preference组件有ListPreference,EditTextPreference,CheckBoxPreference和SwitchPreference,相对于View中的ListView,EditText,CheckBox,Switch和RingtonePreference .

    Android中preference的使用实例代码

    通过继承或扩展Preference,我们可以创建各种类型的偏好设置,如开关按钮(CheckBoxPreference)、单选按钮(ListPreference)和文本输入框(EditTextPreference)等。 二、添加Preference到布局 首先,我们需要在...

    如何制作程序设置窗体

    Preference技术提供了一些专门用于设置功能的控件,例如PreferenceActivity,CheckPreference,EditTextPreference,ListPreference,以及PreferenceScreen。这些控件都是为了方便设置项的展示和用户交互而设计的。...

    Android软件开发之PreferenceActivity中组件的使用

    &lt;ListPreference&gt;标签包括entries(显示的列表项)和entryValues(对应的值)属性。 6. **DialogPreference**: 这是一个抽象类,它是所有弹窗式偏好项的基础。比如,前面提到的EditTextPreference和ListPreference...

    PreferenceActivity存储小dome

    例如,可以包含`CheckBoxPreference`(复选框)、`SwitchPreference`(切换开关)、`EditTextPreference`(文本输入)和`ListPreference`(列表选择)等。 ```xml android:key="checkbox_preference" android:...

    Call_Setting.原生代码Java层分析

    例如,“Caller ID”功能对应的是`button_clir_key`键,它表示一个`ListPreference`类型控件,当用户点击时会弹出一个列表供用户选择。相关的界面元素定义均位于`/packages/apps/Phone/res`目录下。 #### Java层...

    android网络知识

    在上述例子中,`flightoptions.xml`文件定义了一个ListPreference,包含了机票排序选项。`android:entries`指定显示给用户的文本,而`android:entryValues`则对应实际保存的值。当用户在列表中选择一项时,选择的...

    counterpref-源码.rar

    `ListPreference`维护了一个选项列表,当用户选择不同项时,会更新对应的值并保存到SharedPreferences中。 3. `EditTextPreference`:用于输入文本的偏好设置。它包含一个`EditText`,用户可以输入数据,输入的数据...

Global site tag (gtag.js) - Google Analytics