`

使用PreferenceActivity和PreferenceScreen构建应用的设置

 
阅读更多

   对于每个应用程序来说,都要有一些属于用户自己的设置,满足不同需求。当我们点击menu时,如下:



 点击settings时,出现:



 那么这样的效果是怎么实现的呢?我只是来个简单介绍,给自己做备忘,也是给大家点思路吧。在android的路上,我们一起努力吧。

这里我们仅说第二个图片效果的实现,第一个图片的效果,想必大家都会了,就是使用menu类的几个方法就可以了。

1.PreferenceScreen 的使用。

首先要定义一下整个布局即使用xml文件夹下的preferences.xml。

代码如下:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 如果拥有多个首选项,可以构建一个视图来显示首选项高级类别。用户然后就可以深入到每个类别,查看和管理特
定于该组的首选项。 可以通过两种方式来实现此目的。可以在根 PreferenceScreen中引入嵌套的 PreferenceScreen 元素,
或者可以使用 PreferenceCategory 来获得类似的结果。 -->
	<PreferenceCategory android:title="@string/app_name"
		android:summary="Application settings">

		<EditTextPreference android:key="user_name"
			android:defaultValue="@null" 
			android:title="@string/preference_username_title"
			android:summary="@string/preference_username_summary" />
		<ListPreference
                android:key="download_format"
                android:title="@string/preference_codec_title"
                android:summary="@string/preference_codec_summary"
                android:entries="@array/stream_codecs"
                android:entryValues="@array/stream_codecs_values" />
		<ListPreference
                android:key="cache_option"
                android:title="@string/preference_cache_title"
                android:summary="@string/preference_cache_summary"
                android:entries="@array/cache_size"                 
                android:entryValues="@array/cache_size_values"/>                
		<CheckBoxPreference android:key="wifi_only"
			android:defaultValue="false" 
			android:title="@string/preference_wifi_only_title"
			android:summary="@string/preference_wifi_only_summary" />
		<CheckBoxPreference android:key="roaming_protection"
			android:defaultValue="true" 
			android:title="@string/preference_roaming_summary"
			android:summary="@string/preference_roaming_summary" />
		
	</PreferenceCategory>

	<PreferenceCategory android:title="@string/preference_3rdparty_title"
		android:summary="@string/preference_3rdparty_summary">

		<CheckBoxPreference android:defaultValue="false" 
			android:key="scrobbling_enabled" android:title="@string/scrobbling_enabled"/>
		<ListPreference android:key="scrobbler_app" android:dependency="scrobbling_enabled" android:entries="@array/scrobbler_apps" android:title="@string/scrobbler_app" android:entryValues="@array/scrobbler_apps_values" android:summary="@string/scrobbler_app_summary"></ListPreference>
		
	</PreferenceCategory>

	<PreferenceCategory android:title="@string/gestures_preference_title"
		android:summary="@string/gestures_preference_summary">
		<CheckBoxPreference android:key="gestures"
			android:defaultValue="true"
			android:title="@string/gestures_support"
			android:summary="@string/gestures_support_summary"/>
	</PreferenceCategory>
	<PreferenceCategory android:title="@string/preference_reset_title">
		<Preference android:key="reset_firstrun" android:summary="@string/preference_firstrun_reset_summary" android:title="@string/preference_firstrun_reset_title"></Preference>
	</PreferenceCategory>

</PreferenceScreen>

 

其中:

特性                                说明
android:key                       选项的名称或键(比如selected_flight_sort_option)

android:title                       选项的标题

android:summary               选项的简短摘要

android:entries                  可将选项设置成列表项的文本

android:entryValues          定义每个列表项的值。注意:每个列表项有一些文本和 一 个 值。 文本由

entries定义,值由entryValues定义。

android:dialogTitle             对话框的标题,在视图显示为模态对话框时使用
android:defaultValue          项列表中选项的默认值

 

在开发文档中这样定义PreferenceScreen, Represents a top-level Preference that is the root of a Preference hierarchy. 即显示了首选项组织体系的最顶级。

 

2.PreferenceActivity

A PreferenceActivity points to an instance of this class to show the preferences. 即我们通过实例化一个继承PreferenceActivity 的类来展示首选项,代码如下

public class SettingsActivity extends PreferenceActivity { 
@Override
 public void onCreate(Bundle savedInstanceState) 
{ requestWindowFeature(Window.FEATURE_NO_TITLE); 
super.onCreate(savedInstanceState); //添加设置,加入引用 
addPreferencesFromResource(R.xml.preferences); 
setContentView(R.layout.settings); }

 

 关于布局文件settings.xml:

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical" android:layout_width="fill_parent"
	android:layout_height="fill_parent" android:background="#000000">

	<LinearLayout android:layout_width="fill_parent"
		android:layout_height="wrap_content" android:background="@drawable/gradient_dark_purple"
		android:orientation="horizontal" android:gravity="center"
		android:minHeight="75dip">
		<LinearLayout android:layout_height="wrap_content"
			android:minHeight="75dip" android:layout_width="fill_parent"
			android:orientation="horizontal" android:gravity="center_vertical"
			android:paddingLeft="13dip" android:paddingRight="13dip">
			<ImageView android:layout_width="48dip"
				android:layout_height="48dip" android:src="@drawable/settings"></ImageView>
			<LinearLayout android:layout_height="wrap_content"
				android:paddingLeft="13dip" android:orientation="vertical"
				android:layout_width="fill_parent">
				<TextView android:layout_width="wrap_content"
					android:singleLine="true" android:layout_height="wrap_content"
					android:textSize="18dip" android:textColor="#ffffff" android:text="@string/settings"></TextView>
				<TextView android:layout_width="wrap_content"
					android:layout_height="wrap_content" android:textSize="12dip"
					android:textColor="#ffffff"></TextView>
				<TextView android:id="@+id/ItemsCountTextView"
					android:layout_width="wrap_content" android:layout_height="wrap_content"
					android:layout_gravity="right" android:textSize="12dip"
					android:textColor="#ffffff" android:text=" "></TextView>
			</LinearLayout>
		</LinearLayout>
	</LinearLayout>

	<ListView android:layout_width="fill_parent" android:id="@android:id/list"
		android:layout_weight="1" android:layout_height="fill_parent">
	</ListView>
</LinearLayout>

 当我们点击其中某一项时,如cache option

效果:

 

 用到了我们在res下定义的arrays.xml

其中部分内容如下:

   <resources>   
  <string-array name="cache_size">
        <item>Off</item>
        <item>50 MB</item>
        <item>100 MB</item>
        <item>250 MB</item>
        <item>500 MB</item>
    </string-array>    
    <string-array name="cache_size_values">
        <item>0</item>
        <item>50</item>
        <item>100</item>
        <item>250</item>
        <item>500</item>
    </string-array>
</resources>

 

实在不明白的可以参考:http://byandby.iteye.com/blog/1045508 谢谢作者呵呵。

 


 仅提供思路。


 

  • 大小: 16.2 KB
  • 大小: 95.4 KB
  • 大小: 83.8 KB
分享到:
评论

相关推荐

    PreferenceActivity 类的使用,它可以保存设置

    理解并熟练掌握PreferenceActivity的使用,对于构建用户友好的设置界面至关重要,同时也能提高开发效率。通过学习和实践,开发者可以轻松地为应用程序创建定制化的设置菜单,提供更好的用户体验。

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

    总之,PreferenceActivity和相关组件为Android开发者提供了一种高效的方式来构建应用程序的设置界面,使得我们可以专注于逻辑处理,而不用过多关注界面布局的细节。通过熟练掌握这些组件,你可以轻松创建出符合...

    preferenceActivity的简单使用

    总结,`PreferenceActivity`是构建Android应用设置界面的有效工具,通过XML布局和Java代码的结合,可以轻松实现用户设置的创建、显示和处理。尽管在新版本的Android中被`PreferenceFragment`取代,但在向后兼容和...

    Android PreferenceActivity

    总之,`PreferenceActivity`和`Preference`类是Android开发中构建设置界面的标准工具,它们使得开发者能够轻松地创建用户友好的设置界面,并方便地处理用户的偏好设置。理解并熟练使用这两个组件,对于开发高质量的...

    Android PreferenceActivity 使用练习

    总结一下,`PreferenceActivity`是Android中构建设置界面的便捷工具。通过XML定义偏好项,结合`addPreferencesFromResource()`加载,可以快速搭建出用户友好的设置页面。同时,利用`findPreference()`和`...

    PreferenceActivity

    `PreferenceActivity`是构建Android应用设置界面的重要工具,它简化了偏好管理并提供了统一的用户体验。随着Android框架的发展,虽然`PreferenceActivity`的使用有所减少,但理解其工作原理对于Android开发仍然至关...

    Android PreferenceActivity 学习笔记

    首先,PreferenceActivity是Android SDK提供的一种特殊类型的Activity,它允许开发者快速构建具有可配置选项的界面,类似于系统设置应用中的各种设置页面。通过使用PreferenceScreen和各种Preference子类(如...

    Android 属性页PreferenceActivity的实现

    它使得开发者可以轻松地构建具有各种设置选项的界面,如开关、单选按钮、复选框等,而无需从头编写大量的XML和Java代码。本文将深入探讨`PreferenceActivity`的实现及其相关知识点。 首先,`PreferenceActivity`是...

    android中PreferenceActivity详解

    以“我的位置”设置为例,其XML代码展示了如何使用`PreferenceCategory`和`CheckBoxPreference`构建具体的偏好设置界面。每个`CheckBoxPreference`元素都定义了`key`、`title`、`summary`和`defaultValue`属性,分别...

    Cp3PreferenceActivity

    通过合理使用和定制,开发者可以为用户提供直观且易于操作的设置选项。然而,随着Android系统的发展,开发者应该考虑使用更现代的`PreferenceFragmentCompat`来代替,以确保更好的兼容性和功能支持。

    Android之PreferenceActivity.doc

    当用户在PreferenceActivity中进行设置更改时,这些更改会被自动保存到对应的SharedPreferences文件中,以便后续读取和使用。开发者可以通过SharedPreferences接口来读取和修改PreferenceActivity中的设置值。 创建...

    Android之PreferenceActivity应用详解

    PreferenceActivity的使用大大简化了创建设置界面的工作,通过XML定义界面元素和它们的行为,然后在Activity中加载这些元素,就能生成一个功能齐全的设置界面。这种方法不仅易于维护,也方便扩展和自定义。

    如何制作程序设置窗体

    在软件开发中,设置窗体是一个普遍存在的组件,它允许用户根据自己的偏好来定制应用程序的行为和外观。本文档详细介绍了如何利用Android平台中的Preference技术来构建程序的设置窗体,以及一些常用的Preference控件...

    玩转Android--UI篇--PreferenceActivity(开启wifi和音乐等)

    在Android开发中,UI设计是至关重要的一环,而PreferenceActivity是Android系统提供的一种用于构建设置界面的特殊Activity。本篇文章将深入探讨如何利用PreferenceActivity来创建用户交互界面,特别是涉及开启WiFi和...

    HowToPreferenceActivity

    PreferenceActivity是Android系统提供的一种用于展示用户设置界面的特殊Activity,它主要用于构建应用程序的设置页面。在Android早期版本中,它是实现设置界面的主要方式。在本文中,我们将深入探讨...

    Android房iPhone风格设置页面

    这里我们关注的是“Android仿iPhone风格设置页面”,这个话题涉及到使用`PreferenceActivity`来构建一个类似iOS设置界面的应用组件。`PreferenceActivity`是Android SDK中的一个特殊类,主要用于创建用户设置界面,...

    Android4.4 settings源码

    例如,`PreferenceFragment` 和 `PreferenceActivity` 用于构建设置界面的布局,而各个具体的设置类(如 `AboutSettings`、`Wi-FiSettings`)则负责处理特定的设置项。 2. **首选项框架**: 在 Android 4.4 中,...

    安卓Android源码——Settings.rar

    例如,`PreferenceActivity` 和 `PreferenceFragment` 负责界面展示,而 `ContentProvider` 处理设置数据的存储和读取。 2. **首选项框架** Android 的首选项框架用于构建设置界面,它允许开发者创建可交互的设置...

Global site tag (gtag.js) - Google Analytics