android适配器模式设计与实现

news/2024/11/23 3:53:59/

 

 

适配器模式是一种重要的设计模式,在 android 中得到了广泛的应用。适配器类似于现实世界里面的插头,通过适配器,我们可以将分属于不同类的两种不同类型的数据整合起来,而不必去根据某一需要增加或者修改类里面的方法。

适配器又分为单向适配器和双向适配器,在 android 中前者使用的比较频繁。比较常见的实现方式是:首先定义一个适配类,内部定义一个私有的需要适配的对象,该类提供一个构造函数,将该对象的一个实例作为参数传入,并在构造函数里面进行初始化,再提供一个公有的方法,返回另外一个需要适配的类所需要的数据类型。这样通过创建一个额外的类,专门负责数据类型的转换,在不改动原有类的前提下实现了所需的功能。这种设计模式提供了更好的复用性和可扩展性,尤其在我们无法获修改其中一个类或者类与类之间有比较多的不同类型的数据需要进行适配的时候显得格外重要。

android 中常见的适配器类有: BaseAdapter SimpleAdapter ,首先我们看看 android 应用层是如何使用适配器的:

listview 为例,我们设计一个简单的适配,效果如下:

新建工程创建一个名为 AdapterTest Activity ,在 main.xml 里创建一个 listview 内容如下:

<? 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" >

    < ListView android:id = "@+id/min" android:layout_height = "wrap_content"

       android:layout_width = "wrap_content" />

</ LinearLayout >



新建一个名为 item xml 文件,里面对插入的数据进行布局,内容如下:

 

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

< LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"

    android:orientation = "horizontal" android:layout_width = "fill_parent"

    android:layout_height = "wrap_content" >

    < ImageView android:layout_width = "wrap_content"

       android:layout_height = "wrap_content" android:id = "@+id/malone" />

    < TextView android:layout_width = "wrap_content"

       android:layout_height = "wrap_content" android:layout_gravity = "center_vertical"

       android:id = "@+id/malone1" />

</ LinearLayout >

 

AdapterTest 类中定义两个静态全局数组,里面存放我们要显示的内容

public static String[] mTitles = { "1" , "2" , "3" , "4" };

    public static int [] mIds = { R.drawable. icon , R.drawable. icon ,

           R.drawable. icon ,

           R.drawable. icon };

创建一个内部适配类 MinAdapter 继承 BaseAdapter ,需要实现四个方法:

getCount getItem getItemId getView

我们先定义两个私有的数组,并在构造函数中初始化:

private String[] titles ;

    private int [] ids ;

    public MinAdapter(String[] t, int [] idres) {

        titles = t;

        ids = idres;

    }

实现其中的 getCount getView 方法如下:

public int getCount () {

           // TODO Auto-generated method stub

           return titles . length ;

       }

该回调方法返回 listview 中显示的行数

 

public View getView( int position, View convertView, ViewGroup parent) {

           // TODO Auto-generated method stub

           LayoutInflater l = LayoutInflater.from (AdapterTest. this );

           View v = l.inflate(R.layout. item , null );        

           ImageView itemImage = (ImageView)v.findViewById(R.id. malone );

           itemImage.setBackgroundResource( ids [position]);

    ((TextView)v.findViewById(R.id. malone1 )).setText( titles [position]);

           return v;

       }

getView 是一个比较重要的回调方法,它返回 position 位置上的 view

oncreate 中设置 adapter

setContentView(R.layout. main );

        ListView list = (ListView)findViewById(R.id. min );

        MinAdapter adapter = new MinAdapter( mTitles , mIds );

        list.setAdapter(adapter);

这样就实现了一个简单的 adapter

 

接下来我们对 BaseAdapter 的实现源码进行分析:

BaseAdapter 是一个抽象类,实现了了 ListAdapter SpinnerAdapter 两个接口,这两个接口都继承自 Adapter 接口。在这个接口中申明了我们需要实现的四个重要的方法。

接下来,我们进入 ListView 中查看 setAdapter 方法, ListView 就是通过调用这个方法与适配器联系起来的。该方法的入参数为 ListAdapter 类型, ListAdapter 同样继承了 adapter ,也就是说,我们只能够重写 adapter 中的一些回调方法才会起效。该方法中,首先会调用 getCount 方法来设置 listitem 的数目,进行一系列操作之后会调用 requestLayout 方法。由于 ListView 中并没有定义该方法,它会调用它的父类 AbsListView 中的 requestLayout 方法,该方法调用后会回调其中的 onLayout 方法,该方法会调用 ListView 中的 layoutChildren 方法,该方法会调用 fillSpecific 方法, fillSpecific 方法,通过调用 makeAndAddView 方法得到需要 view ,然后将 view 放入 list 。查看 makeAndAddView 方法,它会调用父类的 obtainView 方法,而该方法会调用适配器中重写的 getView 方法。

c hild = mAdapter.getView(position, scrapView, this);

  child = mAdapter.getView(position, null , this );

另外一个比较常见的设置 adapter 的控件是 Gallery Gallery 继承自 AbsSpinner ,该类内部提供了 setAdapter 方法,该方法的实现与 listview 类似,

通过    mItemCount = mAdapter .getCount(); 得到 item 的数量

调用 requestLayout(); 方法回掉 onLayout 方法,调用 layout 方法,该方法中调用 makeAndAddView 方法,里面可以找到我们熟悉的语句:

child = mAdapter .getView(position, null , this );

综合 listview gallery ,发现它们有着类似的实现过程,在 setAdapter 里面获取 适配的 item 的个数,然后通知各自的控件构造这些 item ,构造的时候会通过适配器来获取需要适配的 view

 

为了更简单地实现适配器的功能, android 提供了一个更为方便的类 SimpleAdapter 进行适配。 SimpleAdapter 的构造函数如下:

public SimpleAdapter(Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int [] to)

第一个参数是显示 适配内容的 activity 的上下文,第二个参数看起来比较复杂,这是一个 List 类型的对象 data ,里面存放着一个继承自 Map 类型的任意对象,而这个 Map 中存放的第一个数据类型,即 key 值为 String 类型,第二个为任意类型,第三个参数是我们需要存放进去的 item layoutid ,第四个参数为 map 中的 key 的集合,第五个参数为 map 中第二个参数在 layout 中对应的各自的 id

上述例子进行简单修改如下:

List<Map<String,Object>> list1 = new ArrayList<Map<String,Object>>();

        for ( int i=0;i< mTitles . length ;i++) {

       Map<String,Object> m= new HashMap<String,Object>();

        m.put( "title" , mTitles [i]);

        m.put( "icon" , R.drawable. icon );

        list1.add(m);

        }

SimpleAdapter adapter = new SimpleAdapter( this ,list1,R.layout. item , new String[]{ "icon" , "title" },

             new int []{R.id. malone ,R.id. malone1 });  

        list.setAdapter(adapter);

即可实现同样的效果。

接下来查看 SimpleAdapter 源码:

其内部定义了一个私有的对象:

   private List<? extends Map<String, ?>> mData ;

并在构造的时候将其初始化。

SimpleAdapter 重写了 getCount getView 方法,完成了之前相同的功能

事实上, SimpleAdapter 进行了一次简单的 适配,将需要适配的数据统一转化为存有 map 数据的 list ,给开发者提供了统一的、方便的接口,让开发者使用起来更为方便。

 


http://www.ppmy.cn/news/597685.html

相关文章

计算机电源12p接口图,电源制造商发布了12pin适配器电缆,以实现新的NVIDIA图形电源接口...

上个月中旬&#xff0c;在互联网上发布了NVIDIA RTX30显卡将使用12PIN辅助电源的信息。昨天&#xff0c;电源制造商海云率先发布了双8Pin至12Pin模块生产线&#xff0c;基本上证实了这一传言。 尽管Hai Yun拒绝透露将以哪种形式提供电缆(包括电源/单独购买)&#xff0c;但照片中…

高精度原边反馈开关电源芯片SP5715F系列SP5618系列 电源适配器集成控制芯片。公司无锡硅动力微电子股份有限公司产品

SP5719F功率12W做5V2.4A电源IC原边充电器方案封装SOP-7 2021-05-28 15:48 SP5719是一颗高精度离线式开关电源电路&#xff0c;应用于低功耗AC/DC 充电器与适配器。SP5719 使用原边取样来进行精确的恒流、恒压控制&#xff0c;可以省去一般应用中的光耦与 TL431。 在恒流模式…

KBL406-ASEMI高端电源适配器KBL406

编辑&#xff1a;ll KBL406-ASEMI高端电源适配器KBL406 型号&#xff1a;KBL406 品牌&#xff1a;ASEMI 封装&#xff1a;KBL-4 电流&#xff1a;4A 电压&#xff1a;600V 恢复时间&#xff1a;500ns 正向电压&#xff1a;1.10V 浪涌电流&#xff1a;120A 引脚数量&a…

Insertion插入排序

原谅我接着偷懒&#xff0c;是真的没有什么写的内容了啊&#xff0c;好怀疑他们那些大佬是怎么那么多的文章和技术分享的&#xff0c;自闭中ing 最好情况的时间复杂度是 O(n)&#xff0c;最坏情况的时间复杂度是 O(n2)&#xff0c;然而时间复杂度这个指标看的是最坏的情况&…

npm 上传自己的包,更新自己发布的包

问题一&#xff1a;如何上传自己的包到npm 1、进行项目初始化&#xff1a; npm init 2、登录npm账号&#xff0c;进行包的发布&#xff08;需要完成邮箱注册&#xff0c;因为此时会要求输入邮箱并且填写邮箱收到的一次性密码&#xff09; npm login 3、登录了之后&#xf…

Ubuntu18.04美化主题(mac主题)

前端时间Ubuntu18.04LTS发布&#xff0c;碰巧之前用的Ubuntu16.04出了一点问题&#xff0c;懒得解决&#xff0c;索性就换了Ubuntu18.04。 成果&#xff1a; 参考博客&#xff1a;https://www.cnblogs.com/feipeng8848/p/8970556.html 下面开始进行美化配置&#xff1a; 安装…

13安卓版 ilauncher_iOS13苹果桌面

iOS13苹果桌面详情 iLauncher X helps you do what you want faster with a radically simple home screen replacement. Get speed, beauty and elegance without sacrificing what you love about Android: customizability and personalization. Featuring: Intuitive Desig…

ubuntu20 桌面美化换成macos桌面主题

ubuntu20 桌面美化换成macos桌面主题 最近新安装的ubuntu&#xff0c;总感觉桌面不好看&#xff0c;换成macos主题&#xff0c;感觉一下子就出来了。 废话不多少&#xff0c;先上图看效果可以看到左侧不同文件类型的图标样式。 因为关闭按钮方左边不习惯&#xff0c;所以没有改…