關於SimpleAdapter,listview相似自定義顯示

一、關於SimpleAdapter提供的一個示例 html

private ListView lv;

    private List<Map<String,String>> data;

    private SimpleAdapter sAdapter;

 

lv = (ListView)findViewById(R.id.listview);     

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

    for (int i = 0; i < 10; i++) {

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

            map.put("title", "APPLE");

            map.put("content", "can eat");

map.put("check", true);

map.put("check1", "true");

            map.put("image", R.drawable.icon);

            data.add(map);

}

sAdapter = new SimpleAdapter(getApplicationContext(), 

               data, 

               R.layout.item, 

        new String[]{"title","content","check","check1","image"},

        new int[]{R.id.title,R.id.content,R.id.check,R.id.check1, R.id.image});

lv.setAdapter(sAdapter);

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

java


      
構造函數 android


參數 app

      
context  
關聯SimpleAdapter運行着的視圖的上下文。 函數

data       
一個Map的列表。在列表中的每一個條目對應列表中的一行,應該包含全部在from中指定的條目 佈局

resource             
一個定義列表項目的視圖佈局的資源惟一標識。佈局文件將至少應包含哪些在to中定義了的名稱。 spa

from      
一個將被添加到Map上關聯每個項目的列名稱的列表 code

to   
應該在參數from顯示列的視圖。這些應該全是TextView。在列表中最初的N視圖是從參數from中最初的N列獲取的值。 htm

附上一張圖片: 圖片

相關文章
相關標籤/搜索