编写自定义的 Android Preference 组件

 

Android SDK 提供好几个 Preference 组件,例如 CheckBoxPreference、EditTextPreference、DialogPreference、ListPreference 等,这些组件是跟 Android 提供的 Preference 存储机制绑定的,你可以通过这些组件来修改应用的一些配置,如下图所示,这是 Android 自带的系统设置界面:

 

但这些组件毕竟还不能满足100%的要求,假设我们需要为应用程序提供一个选择不同图片做为应用背景图的设置,我们需要一个很直观的就可以看到当前所选择的图片,然后点击后可以浏览其他图片并选择。那么这些 Preference 就无法满足这个需求,因此我们需要对 Preference 进行扩展,下图是扩展后的效果:

请看中间选项的效果,在右边显示当前选择的图片。

代码如下:

 

源码打印

  1. import  android.content.Context;  
  2. import  android.content.Intent;  
  3. import  android.os.Bundle;  
  4. import  android.preference.Preference;  
  5. import  android.preference.PreferenceActivity;  
  6. import  android.util.AttributeSet;  
  7. import  android.view.View;  
  8. import  android.widget.ImageView;  
  9.   
  10. /**  
  11.  * 图片选项,用于设置图片和边框  
  12.  * @author Winter Lau  
  13.  */   
  14. public  
    class  ImageOptionPreference  extends Preference {  
  15.   
  16.     private  PreferenceActivity parent;  
  17.     private  
    int  mImage = R.drawable.car;  
  18.     private  ImageView preview_img;  
  19.       
  20.     public  ImageOptionPreference(Context context, AttributeSet attrs, int
     defStyle) {  
  21.         super (context, attrs, defStyle);  
  22.     }  
  23.   
  24.     public  ImageOptionPreference(Context context, AttributeSet attrs) {  
  25.         super (context, attrs);  
  26.     }  
  27.   
  28.     public  ImageOptionPreference(Context context) {  
  29.         super (context);  
  30.     }  
  31.       
  32.     void  setActivity(PreferenceActivity parent) {  
  33.         this .parent = parent;  
  34.     }  
  35.       
  36.     @Override   
  37.     public  
    boolean  isPersistent() {  
  38.         return  
    false ;  
  39.     }  
  40.   
  41.     /**  
  42.      * 修改图片  
  43.      * @param newImage  
  44.      * @return  
  45.      */   
  46.     boolean  ChangeGamePic(
    int  newImage ){  
  47.         if (
    this .mImage == newImage)  
  48.             return  
    false ;  
  49.         GameGlobal.save_pic(newImage);  
  50.         this .mImage = newImage;  
  51.         preview_img.setImageResource(newImage);  
  52.         return  
    true ;  
  53.     }  
  54.   
  55.     @Override   
  56.     protected  
    void  onBindView(View view) {  
  57.         super .onBindView(view);  
  58.           
  59.         this .mImage = GameGlobal.get_pic();  
  60.         preview_img = (ImageView)view.findViewById(R.id.pref_current_img);  
  61.         preview_img.setImageResource(this.mImage);  
  62.     }     
  63.   
  64.     @Override   
  65.     protected  
    void  onClick() {  
  66.         super .onClick();  
  67.         Bundle bundle = new
     Bundle();  
  68.         bundle.putInt(GameGlobal.PREF_KEY_IMAGE, this.mImage);  
  69.         Intent intent = new
     Intent(parent, ImageSelector. class );  
  70.         intent.putExtras(bundle);  
  71.         parent.startActivityForResult(intent, MagicSetting.REQUEST_CODE_GAME_IMAGE);          
  72.     }  
  73.   
  74. }  

 

  1. import android.content.Context;
    import android.content.Intent;
    import android.os.Bundle;
    import android.preference.Preference;
    import android.preference.PreferenceActivity;
    import android.util.AttributeSet;
    import android.view.View;
    import android.widget.ImageView;
  2. /**
     * 图片选项,用于设置图片和边框
     * @author Winter Lau
     */
    public class ImageOptionPreference extends Preference {
  3.  private PreferenceActivity parent;
     private int mImage = R.drawable.car;
     private ImageView preview_img;
     
     public ImageOptionPreference(Context context, AttributeSet attrs, int defStyle) {
      super(context, attrs, defStyle);
     }
  4.  public ImageOptionPreference(Context context, AttributeSet attrs) {
      super(context, attrs);
     }
  5.  public ImageOptionPreference(Context context) {
      super(context);
     }
     
     void setActivity(PreferenceActivity parent) {
      this.parent = parent;
     }
     
     @Override
     public boolean isPersistent() {
      return false;
     }
  6.  /**
      * 修改图片
      * @param newImage
      * @return
      */
     boolean ChangeGamePic(int newImage ){
      if(this.mImage == newImage)
       return false;
      GameGlobal.save_pic(newImage);
      this.mImage = newImage;
      preview_img.setImageResource(newImage);
      return true;
     }
  7.  @Override
     protected void onBindView(View view) {
      super.onBindView(view);
      
      this.mImage = GameGlobal.get_pic();
      preview_img = (ImageView)view.findViewById(R.id.pref_current_img);
      preview_img.setImageResource(this.mImage);
     } 
  8.     @Override
        protected void onClick() {
            super.onClick();
            Bundle bundle = new Bundle();
            bundle.putInt(GameGlobal.PREF_KEY_IMAGE, this.mImage);
            Intent intent = new Intent(parent, ImageSelector.class);
            intent.putExtras(bundle);
            parent.startActivityForResult(intent, MagicSetting.REQUEST_CODE_GAME_IMAGE);       

        }
  9. }

 

对应的 Perference 配置信息如下

<com.liusoft.android.fmagic.ImageOptionPreference       
        android:key="game_pic"
        android:persistent="false"
        android:title="@string/pref_pic_title"
        android:summary="@string/pref_pic_summary"
        android:widgetLayout="@layout/preference_widget_image"
    />

而 preference_widget_image 的信息如下

<?xml version="1.0" encoding="utf-8"?>

<!-- Layout used by ImageOptionPreference for the image option style.
     This is inflated inside android.R.layout.preference.
     -->
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/pref_current_img"
    android:layout_width="54dip"
    android:layout_height="54dip"
    android:layout_marginRight="4dip"
    android:layout_gravity="center_vertical"
    android:focusable="false"
    android:clickable="false"
    android:background="#eeeeee"
    android:padding="2dip"
    />
而这个 ImageView 的 Layout 就是在选项右边显示的图片。

时间: 2024-09-18 02:35:29

编写自定义的 Android Preference 组件的相关文章

为Android Studio编写自定义Gradle插件的教程_Android

Google已经建议Android开发全部转向Android Studio开发,Android Studio 是使用gradle编译.打包的,那么问题来了,gradle可是有一堆东西...,为了彻底了解gradle,今天就来学习下如何写自己的gradle插件(当然插件源码是使用groovy写的),先看如下代码目录: 如上图所示,plugin目录是插件源码目录,sample是用来测试插件的. 1.在目录plugin/src/main/groovy/com/micky/gradle/下新建插件类My

Android组件系列----Android Service组件深入解析

[前言] 花了周末两天的时间,整理了一下作为Android四大组件之一的Service的基础知识,通过这篇文章,应该可以明白:对Service的理解.在什么地方使用.怎么使用.要注意哪些问题等. [本文主要内容] 一.Service的基本概念(四大组件之一)二.定义(启动)一个Service 1.如何定义(启动)一个Service: 2.停止一个started服务有两种方法 3.onStartCommand方法的返回值 三.IntentService 1.IntentService的引入 2.I

XCoreRedux框架:Android UI组件化与Redux实践

XCoreRedux框架:Android UI组件化与Redux实践 @author: 莫川 https://github.com/nuptboyzhb/ XCoreRedux源码+Demo:https://github.com/nuptboyzhb/XCoreRedux 使用android studio打开该项目. 目录结构 demo 基于xcore框架写的一个小demo xcore XCoreRedux核心代码库 pics 文档的pic资源 前言 Android开发当中的Code Archi

Android四大组件之Service(服务)实例详解_Android

本文实例讲述了Android四大组件之服务用法.分享给大家供大家参考,具体如下: 很多情况下,一些与用户很少需要产生交互的应用程序,我们一般让它们在后台运行就行了,而且在它们运行期间我们仍然能运行其他的应用. 为了处理这种后台进程,Android引入了Service的概念.Service在Android中是一种长生命周期的组件,它不实现任何用户界面. 基本概念 Ÿ   Service是一种在后台运行,没有界面的组件,由其他组件调用开始. Ÿ   创建Service,定义类继承Service,An

整理的7款常用的开源免费的Android UI组件及官方下载地址

Android开发是目前最热门的移动开发技术之一,随着开发者的不断努力和Android社区的进步,Android开发技术已经日趋成熟,当然,在Android开源社区中也涌现了很多不错的开源UI项目,它们可以帮助Android开发者更方便快捷地完成想要的功能.本文是Android系列的第一篇,主要是向大家推荐一些常用的Android UI组件,它们都是开源的. 1.图表引擎 - AChartEngine AChartEngine是一款基于Android的图表绘制引擎,它为Android开发者提供了

Android ListView组件详解及示例代码_Android

Android 列表组件 ListView 列表组件是开发中经常用到组件,使用该组件在使用时需要为它提供适配器,由适配器提供来确定显示样式和显示数据. 下面看一个例子: 新建一个项目Lesson8_ListViewTest,Activity name是MainListViewTest . MainListViewTest.java的代码是: package android.basic.lesson8; import android.app.Activity; import android.os.

Android UI组件AppWidget控件入门详解_Android

Widget引入  我们可以把Widget理解成放置在桌面上的小组件(挂件),有了Widget,我们可以很方便地直接在桌面上进行各种操作,例如播放音乐.  当我们长按桌面时,可以看到Widget选项,如下图所示:  点击上图中箭头处的widgets图标,会出现如下界面:(都是widget)  长按上图中的任意一个widget,就可以将其放到桌面上.  Widget的使用Widget的实现思路  (1)在AndroidManifest中声明AppWidget:  (2)在xml目录中定义AppWi

Android桌面组件App Widget完整案例_Android

本文实例讲述了Android桌面组件App Widget用法.分享给大家供大家参考.具体如下: 这里模拟一个案例:把AppWidget添加到桌面后,点击AppWidget后AppWidget文本会轮回改变 main.xml布局文件: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/a

自定义vue2.0全局组件(下篇)

在上篇中,老K为大家介绍了一个初级自定义按钮组件的编写方法.虽然能用,但是还不算完美,可扩展性不够强大.在这一篇中,老K继续为大家完善这个按钮组件. 启动命令窗口, 进入在上篇中我们搭建的vue目录中,输入命令npm run dev启动测试环境,如下图: 查看测试页面,打开谷歌浏览器中的vue调试工具,查看生成的组件是否正确,如下图: 如果出现这个,则证明我们上次编写的组件运行正确.现在,我们可以根据Element-ui的按钮组件样式先把通用的按钮组件样式编写好.如下图: 刷新测试页面,查看效果