Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android中的Adapter簡單介紹

Android中的Adapter簡單介紹

編輯:Android開發實例

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,系統被自動加載。
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved