Android中的Adapter簡單介紹

來源:互聯網
上載者:User

Android中的Adapter在自訂顯示列表時非常有用,比如SimpleAdapter,它的建構函式是:
  public SimpleAdapter (Context context, List> data, int resource, String[] from, int[] to)
  它的各參數的意思:
  1.context,上下文,SimpleAdapter關聯的視圖,一般而言就是當前的Activity,this
  2.data,泛型的List,如ArrayList,Map或者HashMap
  3.resource,資源檔,一個R.layout,就是要顯示的布局
  4.from ,一個數組,Map中的索引值對。
  5.to,layout的xml檔案中命名id形成的唯一的int型標識符
  比如:
  在一個ListActivity中定義一個List:
  List> people= new ArrayList>();
  Map m=new HashMap();
  m.put("name","tom");
  m.put("age","20");
  people.add(m);
  ...
  SimpleAdapter adapter = new SimpleAdapter(this,
  (List>) feets, R.layout.main,
  new String[] { "name","age" }, new int[] {R.id.name,R.id.age });
  setListAdapter(adapter);
  其中:
  R.id.name,R.id.age 是在一個XML布局檔案中定義的兩個用於顯示name和age的TextView。布局檔案中要有一個ListView。或者在程式中定義也可以。
  另外,注意在ListActivity中不需要設定setContentView,系統被自動載入。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.