舉例講解Android應(yīng)用中SimpleAdapter簡單適配器的使用
SimpleAdapter,跟名字一樣,一個簡單的適配器,既為簡單,就只是被設(shè)計來做簡單的應(yīng)用的,比如靜態(tài)數(shù)據(jù)的綁定,不過仍然有自定義的空間,比如說在每一個ListItem中加一個按鈕并添加響應(yīng)事件.首先還是先看一下SimpleAdapter的定義吧,直接翻譯下SDK doc 吧:
這是一個簡單的適配器,可以將靜態(tài)數(shù)據(jù)映射到XML文件中定義好的視圖。你可以指定由Map組成的List(比如ArrayList)類型的數(shù)據(jù)。在ArrayList中的每個條目對應(yīng)List中的一行。Maps包含每一行的數(shù)據(jù)。你可以指定一個XML布局以指定每一行的視圖,根據(jù)Map中的數(shù)據(jù)映射關(guān)鍵字到指定的視圖。綁定數(shù)據(jù)到視圖分兩個階段,首先,如果設(shè)置了SimpleAdapter.ViewBinder,那么這個設(shè)置的ViewBinder的setViewValue(android.view.View, Object, String)將被調(diào)用。如果setViewValue的返回值是true,則表示綁定已經(jīng)完成,將不再調(diào)用系統(tǒng)默認(rèn)的綁定實現(xiàn)。如果返回值為false,視圖將按以下順序綁定數(shù)據(jù):
如果View實現(xiàn)了Checkable(例如CheckBox),期望綁定值是一個布爾類型。
TextView.期望綁定值是一個字符串類型,通過調(diào)用setViewText(TextView, String)綁定。
ImageView,期望綁定值是一個資源id或者一個字符串,通過調(diào)用setViewImage(ImageView, int) 或 setViewImage(ImageView, String)綁定數(shù)據(jù)。
如果沒有一個合適的綁定發(fā)生將會拋出IllegalStateException。
先看一下構(gòu)造函數(shù):
public SimpleAdapter (Context context, List<? extends Map<String, ?>> data, int resource, String[] from, int[] to)
SimpleAdapter基本上認(rèn)知了其參數(shù)含義 用起來就簡單多了。
SimpleAdapter的參數(shù)說明:
- 第一個參數(shù) 表示訪問整個android應(yīng)用程序接口,基本上所有的組件都需要
- 第二個參數(shù)表示生成一個Map(String ,Object)列表選項
- 第三個參數(shù)表示界面布局的id 表示該文件作為列表項的組件
- 第四個參數(shù)表示該Map對象的哪些key對應(yīng)value來生成列表項
- 第五個參數(shù)表示來填充的組件 Map對象key對應(yīng)的資源一依次填充組件 順序有對應(yīng)關(guān)系
- 注意的是map對象可以key可以找不到 但組件的必須要有資源填充 因為 找不到key也會返回null 其實就相當(dāng)于給了一個null資源
下面的程序中如果 new String[] { "name", "head", "desc","name" } new int[] {R.id.name,R.id.head,R.id.desc,R.id.head}
這個head的組件會被name資源覆蓋
示例代碼
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" tools:context=".MainActivity" > <ListView android:id="@+id/lt1" android:layout_width="match_parent" android:layout_height="wrap_content" > </ListView> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" > <ImageView android:id="@+id/head" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingLeft="10dp" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > <TextView android:id="@+id/name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="20dp" android:textColor="#f0f" android:paddingLeft="10dp"/> <TextView android:id="@+id/desc" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="14dp" android:paddingLeft="10dp"/> </LinearLayout> </LinearLayout>
package com.example.simpleadptertest; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.widget.ListView; import android.widget.SimpleAdapter; public class MainActivity extends Activity { private String[] name = { "劍蕭舞蝶", "張三", "hello", "詩情畫意" }; private String[] desc = { "魔域玩家", "百家執(zhí)行", "高級的富一代", "妹子請過來..一個善于跑妹子的。。" }; private int[] imageids = { R.drawable.libai, R.drawable.nongyu, R.drawable.qingzhao, R.drawable.tiger }; private ListView lt1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); List<Map<String, Object>> listems = new ArrayList<Map<String, Object>>(); for (int i = 0; i < name.length; i++) { Map<String, Object> listem = new HashMap<String, Object>(); listem.put("head", imageids[i]); listem.put("name", name[i]); listem.put("desc", desc[i]); listems.add(listem); } /*SimpleAdapter的參數(shù)說明 * 第一個參數(shù) 表示訪問整個android應(yīng)用程序接口,基本上所有的組件都需要 * 第二個參數(shù)表示生成一個Map(String ,Object)列表選項 * 第三個參數(shù)表示界面布局的id 表示該文件作為列表項的組件 * 第四個參數(shù)表示該Map對象的哪些key對應(yīng)value來生成列表項 * 第五個參數(shù)表示來填充的組件 Map對象key對應(yīng)的資源一依次填充組件 順序有對應(yīng)關(guān)系 * 注意的是map對象可以key可以找不到 但組件的必須要有資源填充 因為 找不到key也會返回null 其實就相當(dāng)于給了一個null資源 * 下面的程序中如果 new String[] { "name", "head", "desc","name" } new int[] {R.id.name,R.id.head,R.id.desc,R.id.head} * 這個head的組件會被name資源覆蓋 * */ SimpleAdapter simplead = new SimpleAdapter(this, listems, R.layout.simple_item, new String[] { "name", "head", "desc" }, new int[] {R.id.name,R.id.head,R.id.desc}); lt1=(ListView)findViewById(R.id.lt1); lt1.setAdapter(simplead); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } }
- Android中 自定義數(shù)據(jù)綁定適配器BaseAdapter的方法
- Kotlin編寫Android適配器Adapter
- Android SimpleAdapter適配器使用詳解
- Android之自定義實現(xiàn)BaseAdapter(通用適配器一)
- Android ListView和Adapter數(shù)據(jù)適配器的簡單介紹
- Android控件系列之相冊Gallery&Adapter適配器入門&控件縮放動畫入門
- Android ListView適配器(Adapter)優(yōu)化方法詳解
- Android設(shè)計模式之適配器(Adapter)模式
- Android適配器(Adapter)的概念與自定義
相關(guān)文章
Unity同步/異步調(diào)用Android的方法實例
unity在Android端開發(fā)的時候,免不了要調(diào)用Java,下面這篇文章主要給大家介紹了關(guān)于Unity同步/異步調(diào)用Android的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),需要的朋友可以參考下2021-08-08ubuntu上在androidstudio中啟動emulator閃退的解決方法
在AndrodStudio中點(diǎn)擊模擬器的啟動按鈕后,模擬器界面彈出后,又立刻閃退。下面通過本文給大家分享ubuntu上在androidstudio中啟動emulator閃退的解決方法,一起看看吧2017-07-07Android 軟鍵盤彈出隱藏擠壓界面等各種問題小結(jié)
這篇文章主要介紹了Android 軟鍵盤彈出隱藏擠壓界面等各種問題的相關(guān)知識,本文給大家介紹的非常詳細(xì),具有參考借鑒價值,感興趣的朋友一起看看吧2016-11-11解決Android studio Error:(30, 31) 錯誤: 程序包 不存在的問題
這篇文章主要介紹了解決Android studio Error:(30, 31) 錯誤: 程序包 不存在的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-03-03Android實現(xiàn)仿通訊錄側(cè)邊欄滑動SiderBar效果代碼
這篇文章主要介紹了Android實現(xiàn)仿通訊錄側(cè)邊欄滑動SiderBar效果代碼,實例分析了通訊錄側(cè)邊欄滑動效果的實現(xiàn)技巧,并附帶完整實例代碼供讀者下載參考,需要的朋友可以參考下2015-10-10Android?Activity生命周期調(diào)用的理解
大家好。本篇文章主要講的是Android?Activity生命周期調(diào)用的理解,感興趣的同學(xué)趕快來看一看吧,對你有幫助的話記得收藏一下,方便下次瀏覽2021-12-12