本文转于 “雨松MOMO的程序世界” 博客,请务必保留此出处http://xys289187120.blog.51cto.com/3361352/656784
1.PreferenceActivity 介绍
PreferenceActivity 继承ListActivity 它是以一个列表的形式在展现内容,它最主要的特点是添加Preference可以让控件的状态持久化储存,举个例子 比如用户选中checkbox后 退出应用然后在进入应用,这时用户希望看到的是checkbox被选中,所以软件须要记录用户每次操作的过程并且持久储存,在进入应用的时候须要判断这些久储存的数据然后将系统控件的状态呈现在UI中。
尤其是软件开发肯定会有一堆设置选项选项,每次进入Activity都去手动的去取储存的数据,这样代码会变得很复杂很麻烦。 这个时候Preference就出来了,它就是专门解决这些特殊的选项保存与读取的显示。用户每次操作事件它会及时的以键值对的形式记录在SharedPreferences中,Activity每次启动它会自动帮我们完成数据的读取以及UI的显示。
android开发中一共为我们提供了4个组件,分别是CheckBoxPreference组件、EditTextPreference组件、ListPreference组件、RingtonePreference组件,下面我用一个例子一一向同学们介绍一下。
2.CheckBoxPreference组件
CheckBoxPreference 选中为true 取消选中为false 它的值会以boolean的形式储存在SharedPreferences中。
- <?xml version="1.0" encoding="utf-8"?>
- <PreferenceScreen
- xmlns:android="http://schemas.android.com/apk/res/android">
- <PreferenceCategory android:title="CheckBoxPreference">
- <CheckBoxPreference android:key="checkbox_0"
- android:title="CheckBox_A"
- android:summary="这是一个勾选框A" >
- </CheckBoxPreference>
- <CheckBoxPreference android:key="checkbox_1"
- android:title="CheckBox_B"
- android:summary="这是一个勾选框B" >
- </CheckBoxPreference>
- </PreferenceCategory>
- </PreferenceScreen>
- import android.content.Context;
- import android.os.Bundle;
- import android.preference.CheckBoxPreference;
- import android.preference.Preference;
- import android.preference.PreferenceActivity;
- import android.preference.Preference.OnPreferenceChangeListener;
- import android.preference.Preference.OnPreferenceClickListener;
- import android.widget.Toast;
- public class CheckBoxActivity extends PreferenceActivity {
- Context mContext = null;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
- addPreferencesFromResource(R.xml.checkbox);
- mContext = this;
- //CheckBoxPreference组件
- CheckBoxPreference mCheckbox0 = (CheckBoxPreference) findPreference("checkbox_0");
- mCheckbox0.setOnPreferenceClickListener(new OnPreferenceClickListener() {
- @Override
- public boolean onPreferenceClick(Preference preference) {
- //这里可以监听到这个CheckBox 的点击事件
- return true;
- }
- });
- mCheckbox0.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
- @Override
- public boolean onPreferenceChange(Preference arg0, Object newValue) {
- //这里可以监听到checkBox中值是否改变了
- //并且可以拿到新改变的值
- Toast.makeText(mContext, "checkBox_0改变的值为" + (Boolean)newValue, Toast.LENGTH_LONG).show();
- return true;
- }
- });
- CheckBoxPreference mCheckbox1 = (CheckBoxPreference) findPreference("checkbox_1");
- mCheckbox1.setOnPreferenceClickListener(new OnPreferenceClickListener() {
- @Override
- public boolean onPreferenceClick(Preference preference) {
- //这里可以监听到这个CheckBox 的点击事件
- return true;
- }
- });
- mCheckbox1.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
- @Override
- public boolean onPreferenceChange(Preference arg0, Object newValue) {
- //这里可以监听到checkBox中值是否改变了
- //并且可以拿到新改变的值
- Toast.makeText(mContext, "checkBox_1改变的值为" + (Boolean)newValue, Toast.LENGTH_LONG).show();
- return true;
- }
- });
- }
- }
3.EditTextPreference组件
EditTextPreference 点击后会弹出一个输入框,输入的内容会以字符串的的形式储存在SharedPreferences中。
- <?xml version="1.0" encoding="utf-8"?>
- <PreferenceScreen
- xmlns:android="http://schemas.android.com/apk/res/android">
- <PreferenceCategory android:title="EditTextPreference">
- <EditTextPreference android:key="edit_0"
- android:title="输入信息_A"
- android:summary="请输入您的信息"
- android:defaultValue="请输入信息"
- android:dialogTitle="输入框">
- </EditTextPreference>
- <EditTextPreference android:key="edit_1"
- android:title="输入信息_B"
- android:summary="请输入您的信息"
- android:defaultValue="请输入信息"
- android:dialogTitle="输入框">
- </EditTextPreference>
- </PreferenceCategory>
- </PreferenceScreen>
- import android.content.Context;
- import android.os.Bundle;
- import android.preference.EditTextPreference;
- import android.preference.PreferenceActivity;
- public class EditTextActivity extends PreferenceActivity {
- Context mContext = null;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
- addPreferencesFromResource(R.xml.edittext);
- mContext = this;
- // EditTextPreference组件
- EditTextPreference mEditText = (EditTextPreference) findPreference("edit_0");
- //设置dialog按钮信息
- mEditText.setPositiveButtonText("确定");
- mEditText.setNegativeButtonText("取消");
- //设置按钮图标
- mEditText.setDialogIcon(R.drawable.jay);
- }
- }
4.ListPreference组件
在res/array中先写两个数组,一个用与list的显示内容,一个用户list的选中数值。
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <string-array name="auto_logout_time_key">
- <item>10 mins.</item>
- <item>20 mins.</item>
- <item>30 mins.</item>
- <item>60 mins.</item>
- </string-array>
- <string-array name="auto_logout_time_value">
- <item>600000</item>
- <item>1200000</item>
- <item>1800000</item>
- <item>3600000</item>
- </string-array>
- </resources>
ListPreference点击后会弹出一个列表框,选中后会将选中的内容(上面数组中的值)会以字符串的的形式储存在SharedPreferences中。
- <?xml version="1.0" encoding="utf-8"?>
- <PreferenceScreen
- xmlns:android="http://schemas.android.com/apk/res/android">
- <PreferenceCategory android:title="ListPreference">
- <ListPreference
- android:key="list_0"
- android:title="登录设置A"
- android:dialogTitle="选择在线时间"
- android:entries="@array/auto_logout_time_key"
- android:entryValues="@array/auto_logout_time_value" >
- </ListPreference>
- <ListPreference
- android:key="list_0"
- android:title="登录设置A"
- android:dialogTitle="选择在线时间"
- android:entries="@array/auto_logout_time_key"
- android:entryValues="@array/auto_logout_time_value" >
- </ListPreference>
- </PreferenceCategory>
- </PreferenceScreen>
- import android.os.Bundle;
- import android.preference.PreferenceActivity;
- public class ListActivity extends PreferenceActivity {
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
- addPreferencesFromResource(R.xml.list);
- }
- }
5.RingtonePreference组件
RingtonePreference点击后会弹出一个系统铃声的列表框,选中后会将选中的内容(uri字符集)会以字符串的的形式储存在SharedPreferences中。
- <?xml version="1.0" encoding="utf-8"?>
- <PreferenceScreen
- xmlns:android="http://schemas.android.com/apk/res/android">
- <PreferenceCategory android:title="RingtonePreference">
- <RingtonePreference
- android:key="ringtone_0"
- android:summary="选择系统铃声A"
- android:title="铃声设置"
- android:ringtoneType="all"
- android:showSilent="true" ></RingtonePreference>
- <RingtonePreference
- android:key="ringtone_!"
- android:summary="选择系统铃声B"
- android:title="铃声设置"
- android:ringtoneType="all"
- android:showSilent="true" ></RingtonePreference>
- </PreferenceCategory>
- </PreferenceScreen>
android:ringtoneType 系统一共提供了4中响铃模式的类型分别为 铃声(ringtone) 通知( notification) 警告(alarm) 全部(all)
模拟器默认是没有铃声的,下图中的铃声我是将歌曲文件拷贝到SD卡中,设置铃声后才会出现的。如果觉得拷贝麻烦可以使用豌豆荚或者91助手将歌曲文件放入手机SD卡中,在铃声设置那里设置一下在这里就会出现。
- import android.os.Bundle;
- import android.preference.PreferenceActivity;
- public class RingtoneActivity extends PreferenceActivity {
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
- addPreferencesFromResource(R.xml.ringtone);
- }
- }
5.自定义控件
使用系统的控件在显示方面难免会有些单一,如果想做一个好看的界面就需要使用自定义Preference。下面我简单说明一下如何编写自定义Preference。首先在res/layout中添加preferences文件
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#00000000">
- <LinearLayout
- android:gravity="center_vertical"
- android:background="@drawable/preference_mid_background"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- >
- <ImageView
- android:focusable="false"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:src="@drawable/setting_about_us">
- </ImageView>
- <RelativeLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="15dip"
- android:layout_marginTop="6dip"
- android:layout_marginRight="6dip"
- android:layout_marginBottom="6dip"
- android:layout_weight="1"
- >
- <TextView
- android:textSize="15dip"
- android:textColor="#000000"
- android:ellipsize="marquee"
- android:id="@+android:id/title"
- android:fadingEdge="horizontal"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:singleLine="true"
- >
- </TextView>
- <TextView
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="#565656"
- android:id="@+android:id/summary"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:maxLines="4"
- android:layout_below="@+android:id/title"
- android:layout_alignLeft="@+android:id/title"
- >
- </TextView>
- </RelativeLayout>
- <ImageView
- android:focusable="false"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/preference_arrows"/>
- </LinearLayout>
- </LinearLayout>
android:background="@drawable/preference_mid_background"
通过这一行可以设置这个按钮的点击、选中默认的显示状态,这样可以让你的按钮更加好看。须要在res/drawable中添加xml文件
android:state_facused :为控件选中显示
android:state_pressed:为控件按下显示
最后一个为默认显示
- <?xml version="1.0" encoding="utf-8"?>
- <selector
- xmlns:android="http://schemas.android.com/apk/res/android">
- <item
- android:state_focused="true"
- android:drawable="@drawable/preference_mid_pressed"
- >
- </item>
- <item
- android:state_pressed="true"
- android:drawable="@drawable/preference_mid_pressed"
- >
- </item>
- <item
- android:drawable="@drawable/preference_mid"
- >
- </item>
- </selector>
- import android.content.Context;
- import android.os.Bundle;
- import android.preference.Preference;
- import android.preference.PreferenceActivity;
- import android.preference.Preference.OnPreferenceClickListener;
- import android.widget.Toast;
- public class AllActivity extends PreferenceActivity {
- /**自定义布局A**/
- Preference preference0 = null;
- /**自定义布局B**/
- Preference preference1 = null;
- Context mContext = null;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- // 从资源文件中添Preferences ,选择的值将会自动保存到SharePreferences
- addPreferencesFromResource(R.xml.all);
- mContext = this;
- preference0 = findPreference("pref_key_0");
- preference0.setOnPreferenceClickListener(new OnPreferenceClickListener() {
- @Override
- public boolean onPreferenceClick(Preference preference) {
- Toast.makeText(mContext, "自定义布局A被按下", Toast.LENGTH_LONG).show();
- return false;
- }
- });
- preference1 = findPreference("pref_key_1");
- preference1.setOnPreferenceClickListener(new OnPreferenceClickListener() {
- @Override
- public boolean onPreferenceClick(Preference preference) {
- Toast.makeText(mContext, "自定义布局B被按下", Toast.LENGTH_LONG).show();
- return false;
- }
- });
- }
- }
读取数据
在PreferenceActivity中可以用下面这种方式拿到SharedPreferences中储存的数值,通过PreferenceManager.getDefaultSharedPreferences(this) 方法拿到控件默认储存的sharedPreferences对象。
- SharedPreferences prefs =PreferenceManager.getDefaultSharedPreferences(this) ;
- boolean something = prefs.getBoolean("something",false);
在模拟起中将SharedPreferences储存内容拷贝出来后,可以清楚的看到通过点击系统控件储存的数值。这里我说一下铃声的储存,它是以一个字符串形式的uri字符集,它所指向的是系统铃声储存的路径。所以根据这个字符集就可以找到这个铃声。
- <?xml version='1.0' encoding='utf-8' standalone='yes' ?>
- <map>
- <string name="ringtone_!">content://media/external/audio/media/1</string>
- <string name="ringtone_0">content://media/external/audio/media/1</string>
- <string name="list_0">1800000</string>
- <string name="edit_1">请输入信息1212</string>
- <string name="list">1200000</string>
- <string name="ringtone">content://settings/system/ringtone</string>
- <boolean name="checkbox_0" value="true" />
- <boolean name="checkbox_1" value="true" />
- <string name="edit_0">请输入信息</string>
- </map>
代码下载地址:http://download.csdn.net/source/3556196
转:Android软件开发之PreferenceActivity中的组件的更多相关文章
-
Android 软件开发之 PreferenceActivity 中的组件
1.PreferenceActivity 介绍 PreferenceActivity 继承ListActivity 它是以一个列表的形式在展现内容,它最主要的特点是添加Preference可以让控件的 ...
-
Android安全开发之WebView中的地雷
Android安全开发之WebView中的地雷 0X01 About WebView 在Android开发中,经常会使用WebView来实现WEB页面的展示,在Activiry中启动自己的浏览器,或者 ...
-
android软件开发之webView.addJavascriptInterface循环渐进【二】
本篇文章由:http://www.sollyu.com/android-software-development-webview-addjavascriptinterface-cycle-of-gra ...
-
android软件开发之webView.addJavascriptInterface循环渐进【一】
本篇文章由:http://www.sollyu.com/android-software-development-webview-addjavascriptinterface-cycle-of-gra ...
-
Android软件开发之ListView 详解【转】
ListView的使用方法 ListView是Android软件开发中非常重要组件之一,基本上是个软件基本都会使用ListView ,今天我通过一个demo来教大家怎么样使用ListView组件 绘 ...
-
Android安全开发之WebView中的大坑
0X01 About WebView 在Android开发中,经常会使用WebView来实现WEB页面的展示,在Activiry中启动自己的浏览器,或者简单的展示一些在线内容等.WebView功能强大 ...
-
【Android】Android软件开发之ListView 详解
原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法律责任.http://xys289187120.blog.51cto.com/3361352/65717 ...
-
Android软件开发之EditText 详解(八)
原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法律责任.http://xys289187120.blog.51cto.com/3361352/65718 ...
-
Android软件开发之EditText 详解
EditText在API中的结构 java.lang.Objectandroid.view.Viewandroid.widget.TextView android.widget.Edit ...
随机推荐
-
python运维开发坎坷之路-01
前言 2014年9月,*乌鲁木齐,在51CTO学院看着alex老师的python教学视频,不得不说这是我第一次接触python这门高级语言,从最开始的一无所知到现在能够用python写脚本,再到未来 ...
-
【C#】【Thread】SynchronizationContext线程间同步
SynchronizationContext在通讯中充当传输者的角色,实现功能就是一个线程和另外一个线程的通讯. 需要注意的是,不是每个线程都附加SynchronizationContext这个对象, ...
-
Swift游戏实战-跑酷熊猫 14 熊猫打滚
这节内容我们来实现熊猫打滚.思路是这样的,当熊猫起跳时记录他的Y坐标,落到平台上的时候再记录它的Y坐标.两个坐标之间的差要是大于一定数值就判断它从高处落下要进行打滚缓冲.至此跑酷熊猫已经像一个游戏的样 ...
-
Java流读写
写: package com.wjy.write; import java.io.BufferedWriter; import java.io.FileOutputStream; import jav ...
-
《大型网站系统与JAVA中间件实践学习笔记》-1
第一章:分布式系统介绍 定义:分布式系统是一组分布在网络上通过消息传递进行协作的计算机组成系统. 分布式系统的意义 升级单机处理能力的性价比越来越低 单机处理器能力存在瓶颈 处于稳定性和可用性考虑 阿 ...
-
VirtualBox不能为虚拟电脑打开一个新任务——The VirtualBox kernel modules do not match this version of VirtualBox
本文由荒原之梦原创,原文链接:http://zhaokaifeng.com/?p=608 一.问题产生的环境 物理机操作系统:Ubuntu 17.10 (Ubuntu版本查看命令: cat /etc/ ...
-
配置SQLServer,允许远程连接
需要别人远程你的数据库,首先需要的是在一个局域网内,或者连接的是同一个路由器,接下来就是具体步骤: (一)首先是要检查SQLServer数据库服务器中是否允许远程链接.其具体操作为: (1)打开数据库 ...
-
PHPUnit实践一(初识)
PHPUnit实践一(初识) 本系列教程所有的PHPUnit测试基于PHPUnit6.5.9版本,Lumen 5.5框架 前置 日常我们的普通用到的测试: 代码直接echo,debug等方法测 ...
-
Zabbix客户端(被监控端)安装配置
1) 创建用户 groupadd zabbix useradd -g zabbix zabbix 2)zabbix软件包下载,安装 zabbix-2.2.6 http://jaist.dl.sourc ...
-
go基本操作
看了一段时间的go的知识了,本来是冲着它是系统级的语言去的,同时又有java的的样子.看了这么久,发现这语言挺好的,语法精简,有c的遗传.在面向对象上,也有些许的java风格.写web的时候,这风格和 ...