Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android ListActivity應用技巧全解

Android ListActivity應用技巧全解

編輯:高級開發

今天為大家帶來的是有關android ListActivity的相關內容的介紹。我們可以從這篇文章中介紹的內容詳細的對這一方面的知識進行一個全面的認識。首先看看android.app包裡的幾個類。首先是這個在平台自的例子中被廣泛使用的Android ListActivity。這個類其實就是一個含有一個ListView組件的Activity類。也就是說,如果我們直接在一個普通的Activity中自己加一個ListVIEw也是完全可以取代這個android ListActivity的,只是它更方便而已,方便到什麼程度呢?來做個例子瞧瞧。

  1. public class HelloTwoB extends ListActivity
  2. ...{
  3. public void onCreate(Bundle icicle) ...{
  4. super.onCreate(icicle);
  5. setTheme(android.R.style.Theme_Dark);
  6. setContentVIEw(R.layout.mainb);
  7. List< String> items = fillArray();
  8. ArrayAdapter< String> adapter = new ArrayAdapter< String>
    (this,R.layout.list_row,items);
  9. this.setListAdapter(adapter);
  10. }
  11. private List< String> fillArray()
  12. ...{
  13. List< String> items = new ArrayList< String>();
  14. items.add("日曜日");
  15. items.add("月曜日");
  16. items.add("火曜日");
  17. items.add("水曜日");
  18. items.add("木曜日");
  19. items.add("金曜日");
  20. items.add("土曜日");
  21. return items;
  22. }
  23. @Override
  24. protected void onListItemClick(ListVIEw l,
    VIEw v, int position, long id)
  25. ...{
  26. TextVIEw txt = (TextView)this.findVIEwById(R.id.text);
  27. txt.setText("あすは "+l.getSelectedItem().toString()+"です。");
  28. }
  29. }

的確可以簡單到只需准備一個List對象並借助Adapter就可以構造出一個列表。重載onListItemClick方法可以響應選擇事件,利用第一個參數可以訪問到這個ListView實例以得到選中的條目信息。這裡有一點要說明的,就是如果更簡單的話,其實連那個setContentVIEw都可以不要了,android也會自動幫我們構造出一個全屏的列表。但是本例中我們需要一個TextVIEw來顯示選中的條目,所以我們需要一個layout.mainb描述一下這個列表窗口。

  1. < ?XML version="1.0" encoding="utf-8"?>
  2. < LinearLayout XMLns:android=
    "http://schemas.android.com/apk/res/android"
  3. android:orIEntation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. >
  7. < TextVIEw id="@+id/text"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text=""
  11. />
  12. < ListVIEw id="@id/android:list"
  13. android:layout_width="fill_parent"
  14. android:layout_height="0dip"
  15. android:layout_weight="1"
  16. android:drawSelectorOnTop="false"
  17. />
  18. < /LinearLayout>

在android ListActivity操作中需要注意的是那個ListVIEw的ID,是系統自定義的android:list,不是我們隨便取的,否則系統會說找不到它想要的listview了。然後,在這個listview之外,我們又增加了一個TextVIEw,用來顯示選中的條目。

再來說說這裡用到的ArrayAdapter,它的構造函數中第二個參數是一個資源ID,ArrayAdapter的API文檔中說是要求用一個包含 TextVIEw的layout文件,平台用它來顯示每個選擇條目的樣式,這裡的取值是R.layout.list_row,所以,我們還有一個list_row.XML文件來描述這個布局,相當簡單。

  1. < ?XML version="1.0" encoding="utf-8"?>
  2. < LinearLayout XMLns:android=
    "http://schemas.android.com/apk/res/android"
  3. android:orIEntation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. >
  7. < TextVIEw id="@+id/item"
  8. XMLns:android="http://schemas.android.com/apk/res/android"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"/>
  11. < TextVIEw id="@+id/item2"
  12. XMLns:android="http://schemas.android.com/apk/res/android"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"/>
  15. < /LinearLayout>

從ArrayAdapter上溯到BaseAdapter,發現還有幾個同源的Adapter也應該可以使用,象SimpleAdapter和CursorAdapter,還是做個例子來實驗一下吧。

android ListActivity的相關內容就為大家介紹到這裡。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved