亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

舉例講解Android應(yīng)用中SimpleAdapter簡(jiǎn)單適配器的使用

 更新時(shí)間:2016年04月24日 10:21:14   作者:劍蕭舞蝶  
這篇文章主要介紹了Android應(yīng)用中SimpleAdapter簡(jiǎn)單適配器的使用例子,SimpleAdapter經(jīng)常在ListView被使用,需要的朋友可以參考下

SimpleAdapter,跟名字一樣,一個(gè)簡(jiǎn)單的適配器,既為簡(jiǎn)單,就只是被設(shè)計(jì)來做簡(jiǎn)單的應(yīng)用的,比如靜態(tài)數(shù)據(jù)的綁定,不過仍然有自定義的空間,比如說在每一個(gè)ListItem中加一個(gè)按鈕并添加響應(yīng)事件.首先還是先看一下SimpleAdapter的定義吧,直接翻譯下SDK doc 吧:

這是一個(gè)簡(jiǎn)單的適配器,可以將靜態(tài)數(shù)據(jù)映射到XML文件中定義好的視圖。你可以指定由Map組成的List(比如ArrayList)類型的數(shù)據(jù)。在ArrayList中的每個(gè)條目對(duì)應(yīng)List中的一行。Maps包含每一行的數(shù)據(jù)。你可以指定一個(gè)XML布局以指定每一行的視圖,根據(jù)Map中的數(shù)據(jù)映射關(guān)鍵字到指定的視圖。綁定數(shù)據(jù)到視圖分兩個(gè)階段,首先,如果設(shè)置了SimpleAdapter.ViewBinder,那么這個(gè)設(shè)置的ViewBinder的setViewValue(android.view.View, Object, String)將被調(diào)用。如果setViewValue的返回值是true,則表示綁定已經(jīng)完成,將不再調(diào)用系統(tǒng)默認(rèn)的綁定實(shí)現(xiàn)。如果返回值為false,視圖將按以下順序綁定數(shù)據(jù):
如果View實(shí)現(xiàn)了Checkable(例如CheckBox),期望綁定值是一個(gè)布爾類型。
TextView.期望綁定值是一個(gè)字符串類型,通過調(diào)用setViewText(TextView, String)綁定。
ImageView,期望綁定值是一個(gè)資源id或者一個(gè)字符串,通過調(diào)用setViewImage(ImageView, int) 或 setViewImage(ImageView, String)綁定數(shù)據(jù)。
如果沒有一個(gè)合適的綁定發(fā)生將會(huì)拋出IllegalStateException。

先看一下構(gòu)造函數(shù): 

復(fù)制代碼 代碼如下:

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

SimpleAdapter基本上認(rèn)知了其參數(shù)含義 用起來就簡(jiǎn)單多了。

SimpleAdapter的參數(shù)說明:

  •  第一個(gè)參數(shù) 表示訪問整個(gè)android應(yīng)用程序接口,基本上所有的組件都需要
  •  第二個(gè)參數(shù)表示生成一個(gè)Map(String ,Object)列表選項(xiàng)
  •  第三個(gè)參數(shù)表示界面布局的id  表示該文件作為列表項(xiàng)的組件
  •  第四個(gè)參數(shù)表示該Map對(duì)象的哪些key對(duì)應(yīng)value來生成列表項(xiàng)
  •  第五個(gè)參數(shù)表示來填充的組件 Map對(duì)象key對(duì)應(yīng)的資源一依次填充組件 順序有對(duì)應(yīng)關(guān)系
  •  注意的是map對(duì)象可以key可以找不到 但組件的必須要有資源填充  因?yàn)?找不到key也會(huì)返回null 其實(shí)就相當(dāng)于給了一個(gè)null資源

 下面的程序中如果 new String[] { "name", "head", "desc","name" } new int[] {R.id.name,R.id.head,R.id.desc,R.id.head}

這個(gè)head的組件會(huì)被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", "詩(shī)情畫意" }; 
 
  private String[] desc = { "魔域玩家", "百家執(zhí)行", "高級(jí)的富一代", "妹子請(qǐng)過來..一個(gè)善于跑妹子的。。" }; 
 
  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ù)說明 
     * 第一個(gè)參數(shù) 表示訪問整個(gè)android應(yīng)用程序接口,基本上所有的組件都需要 
     * 第二個(gè)參數(shù)表示生成一個(gè)Map(String ,Object)列表選項(xiàng) 
     * 第三個(gè)參數(shù)表示界面布局的id 表示該文件作為列表項(xiàng)的組件 
     * 第四個(gè)參數(shù)表示該Map對(duì)象的哪些key對(duì)應(yīng)value來生成列表項(xiàng) 
     * 第五個(gè)參數(shù)表示來填充的組件 Map對(duì)象key對(duì)應(yīng)的資源一依次填充組件 順序有對(duì)應(yīng)關(guān)系 
     * 注意的是map對(duì)象可以key可以找不到 但組件的必須要有資源填充 因?yàn)?找不到key也會(huì)返回null 其實(shí)就相當(dāng)于給了一個(gè)null資源 
     * 下面的程序中如果 new String[] { "name", "head", "desc","name" } new int[] {R.id.name,R.id.head,R.id.desc,R.id.head} 
     * 這個(gè)head的組件會(huì)被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; 
  } 
 
} 

2016424102052967.jpg (418×350)

相關(guān)文章

最新評(píng)論