- 浏览: 369306 次
- 性别:
- 来自: 福州
-
文章分类
最新评论
-
loveskey:
找了好久,可算是找到了。感谢
dx.jar dx.bat -
zhaoyi168:
可以把工程的代码发给我吗?
ZJLN1982@yahoo.co ...
Athrun Demo -
ergodic09:
請問樓主 我目前在porting AR6003但是無法自己產生 ...
009-Android平台开发-WIFI function porting-WIFI功能移植 -
iedj99fei:
...
androi中xliff:g
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.
<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.
发表评论
-
eclipse中安装插件地址
2014-03-07 15:08 767http://subclipse.tigris.org/up ... -
ubuntu13下载android源码
2014-02-27 18:23 660一、注意repo的正确地址 repo:curl " ... -
用例无法运行,报如下错:Exception during suite construction
2014-02-26 15:47 1288一 前提 1、 测试工程中的所有参数已配置好,如ins ... -
dx.jar dx.bat
2013-06-17 19:33 2287Android SDK中dx.jar, dx.bat文件的备份 ... -
Please ensure that adb is correctly located..... 问题
2013-04-16 09:44 984解决方法: 方法一、查毒杀毒,也许了病毒占用了adb ... -
PC端通过adb与设备端通信
2013-03-28 09:36 1552adb 全称Android Debug Bri ... -
Unable to execute dex: Multiple dex files define Lorg/taptwo/android/widget/Circ
2013-02-21 15:07 2596问题:[2013-02-21 15:01:02 - Dex ... -
android viewTree and decorView
2013-01-30 13:55 1710Android ViewTree and DecorView ... -
No active compatible AVD's or devices found. Relaunch this configuration after c
2013-01-29 10:56 8783问题:No active compatible AVD's ... -
代码对比工具
2013-01-24 15:33 680windows: http://www.scooterso ... -
android最新源码下载
2013-01-23 09:57 1059源码下载:https://source.android.co ... -
Run MonkeyTalk Scripts via Ant in Windows
2012-12-18 20:24 1309Run MonkeyTalk Scripts via ... -
Android中cpu,memory,Battery的计算
2012-11-20 19:59 66301 Memory的分配(RAM而非ROM) 网址: •ht ... -
http://code.taobao.org/p/TMTS/src/
2012-10-12 17:38 1047http://code.taobao.org/p/TMTS/s ... -
string.xml文件中的特殊符号转换符
2012-09-24 09:09 793strings.xml文件中需要对特殊符号(如%,'等)进行转 ... -
web server 中设置wifi代理
2012-09-24 09:07 910DefaultHttpClient httpClient = ... -
Android开发一些常见问题
2012-09-24 09:06 7531:当追踪问题时,代码中实在找不出问题所以,代码的逻辑完全正确 ... -
将log信息写入sdcard
2012-07-05 17:14 889File mFile; private void write ... -
string.xml文件中的特殊符号转换符
2012-06-19 19:39 1078strings.xml文件中需要对特殊符号(如%,'等)进行转 ... -
关于popupWindow的dismiss
2012-06-17 16:13 8609View contentView = LayoutInflat ...
相关推荐
标题"TestPreference修复ListPreference属性无法使用问题"表明存在一个关于`ListPreference`的故障,可能表现为无法显示列表、无法保存用户选择或者在界面中显示异常。这个问题可能是由于多种原因造成的,包括但不...
`PreferenceFragment` 是 `Fragment` 的一个子类,专门用于展示用户设置界面,通常包含各种`Preference` 类型,如 `CheckBoxPreference`, `ListPreference`, `EditTextPreference` 等。`ListPreference` 是一个特殊...
在Android开发中,`ListPreference`是一个非常常用的控件,用于展示一个下拉选择列表,通常用于设置应用的偏好选项。然而,原生的`ListPreference`存在一些限制,例如它不支持添加、修改或删除选项。为了克服这些...
- 创建一个`res/xml/preferences.xml`文件,定义一个`ListPreference`,用于展示SD卡上的音乐文件列表。 - 在`ListPreference`的`entries`属性中填写音乐文件的名称,`entryValues`属性则保存对应的文件路径。 2....
本篇文章将详细讲解如何在Android中使用各种类型的Preference,特别是ListPreference。 首先,我们来看一下ListPreference的使用。ListPreference在Android中用于创建一个下拉列表供用户选择。在Listing 11–1中...
Preference家族包括多种类型,如CheckBoxPreference(复选框)、SwitchPreference(开关按钮)、EditTextPreference(文本输入框)、ListPreference(列表选择)等。每种类型对应不同的用户交互方式,开发者可以根据...
ListPreference listPref = (ListPreference) preference; int index = listPref.findIndexOfValue(listPref.getValue()); String selected = listPref.getEntries()[index].toString(); // 处理用户选择 } ...
PreferenceScreen 元素可以包含多个首选项项目,每个首选项项目都可以是 ListPreference、CheckBoxPreference、EditTextPreference 或 RingtonePreference 等类型。 8.4 本章小结 本章讨论了 Android SDK 的两个...
在Android开发中,PreferenceActivity配合一系列的Preference子类,如CheckBoxPreference、EditTextPreference、ListPreference和RingtonePreference,可以轻松构建各种常见的设置选项。以下是对这些组件的详细介绍...
Preference主要实现一些配置数据,一些我们上次...Preference组件有ListPreference,EditTextPreference,CheckBoxPreference和SwitchPreference,相对于View中的ListView,EditText,CheckBox,Switch和RingtonePreference .
通过继承或扩展Preference,我们可以创建各种类型的偏好设置,如开关按钮(CheckBoxPreference)、单选按钮(ListPreference)和文本输入框(EditTextPreference)等。 二、添加Preference到布局 首先,我们需要在...
Preference技术提供了一些专门用于设置功能的控件,例如PreferenceActivity,CheckPreference,EditTextPreference,ListPreference,以及PreferenceScreen。这些控件都是为了方便设置项的展示和用户交互而设计的。...
<ListPreference>标签包括entries(显示的列表项)和entryValues(对应的值)属性。 6. **DialogPreference**: 这是一个抽象类,它是所有弹窗式偏好项的基础。比如,前面提到的EditTextPreference和ListPreference...
例如,可以包含`CheckBoxPreference`(复选框)、`SwitchPreference`(切换开关)、`EditTextPreference`(文本输入)和`ListPreference`(列表选择)等。 ```xml android:key="checkbox_preference" android:...
例如,“Caller ID”功能对应的是`button_clir_key`键,它表示一个`ListPreference`类型控件,当用户点击时会弹出一个列表供用户选择。相关的界面元素定义均位于`/packages/apps/Phone/res`目录下。 #### Java层...
在上述例子中,`flightoptions.xml`文件定义了一个ListPreference,包含了机票排序选项。`android:entries`指定显示给用户的文本,而`android:entryValues`则对应实际保存的值。当用户在列表中选择一项时,选择的...
`ListPreference`维护了一个选项列表,当用户选择不同项时,会更新对应的值并保存到SharedPreferences中。 3. `EditTextPreference`:用于输入文本的偏好设置。它包含一个`EditText`,用户可以输入数据,输入的数据...