編輯:高級開發
今天為大家帶來的是有關android ListActivity的相關內容的介紹。我們可以從這篇文章中介紹的內容詳細的對這一方面的知識進行一個全面的認識。首先看看android.app包裡的幾個類。首先是這個在平台自的例子中被廣泛使用的Android ListActivity。這個類其實就是一個含有一個ListView組件的Activity類。也就是說,如果我們直接在一個普通的Activity中自己加一個ListVIEw也是完全可以取代這個android ListActivity的,只是它更方便而已,方便到什麼程度呢?來做個例子瞧瞧。
- public class HelloTwoB extends ListActivity
- ...{
- public void onCreate(Bundle icicle) ...{
- super.onCreate(icicle);
- setTheme(android.R.style.Theme_Dark);
- setContentVIEw(R.layout.mainb);
- List< String> items = fillArray();
- ArrayAdapter< String> adapter = new ArrayAdapter< String>
(this,R.layout.list_row,items);- this.setListAdapter(adapter);
- }
- private List< String> fillArray()
- ...{
- List< String> items = new ArrayList< String>();
- items.add("日曜日");
- items.add("月曜日");
- items.add("火曜日");
- items.add("水曜日");
- items.add("木曜日");
- items.add("金曜日");
- items.add("土曜日");
- return items;
- }
- @Override
- protected void onListItemClick(ListVIEw l,
VIEw v, int position, long id)- ...{
- TextVIEw txt = (TextView)this.findVIEwById(R.id.text);
- txt.setText("あすは "+l.getSelectedItem().toString()+"です。");
- }
- }
的確可以簡單到只需准備一個List對象並借助Adapter就可以構造出一個列表。重載onListItemClick方法可以響應選擇事件,利用第一個參數可以訪問到這個ListView實例以得到選中的條目信息。這裡有一點要說明的,就是如果更簡單的話,其實連那個setContentVIEw都可以不要了,android也會自動幫我們構造出一個全屏的列表。但是本例中我們需要一個TextVIEw來顯示選中的條目,所以我們需要一個layout.mainb描述一下這個列表窗口。
- < ?XML version="1.0" encoding="utf-8"?>
- < LinearLayout XMLns:android=
"http://schemas.android.com/apk/res/android"- android:orIEntation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- < TextVIEw id="@+id/text"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text=""
- />
- < ListVIEw id="@id/android:list"
- android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="1"
- android:drawSelectorOnTop="false"
- />
- < /LinearLayout>
在android ListActivity操作中需要注意的是那個ListVIEw的ID,是系統自定義的android:list,不是我們隨便取的,否則系統會說找不到它想要的listview了。然後,在這個listview之外,我們又增加了一個TextVIEw,用來顯示選中的條目。
再來說說這裡用到的ArrayAdapter,它的構造函數中第二個參數是一個資源ID,ArrayAdapter的API文檔中說是要求用一個包含 TextVIEw的layout文件,平台用它來顯示每個選擇條目的樣式,這裡的取值是R.layout.list_row,所以,我們還有一個list_row.XML文件來描述這個布局,相當簡單。
- < ?XML version="1.0" encoding="utf-8"?>
- < LinearLayout XMLns:android=
"http://schemas.android.com/apk/res/android"- android:orIEntation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- < TextVIEw id="@+id/item"
- XMLns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- < TextVIEw id="@+id/item2"
- XMLns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- < /LinearLayout>
從ArrayAdapter上溯到BaseAdapter,發現還有幾個同源的Adapter也應該可以使用,象SimpleAdapter和CursorAdapter,還是做個例子來實驗一下吧。
android ListActivity的相關內容就為大家介紹到這裡。
據報道 Google 准備在 4 月發布下一個 android 系統的重要版本,優派(VIEwSonic)將率先發布采用這個新版本系統 android 2.4 的設備。
谷歌於北京時間2010年5月20日晚上10:30點在舊金山Moscone會展中心舉辦Google I/O 2010大會第二天的會議,谷歌正式發布了代號是“froyo 凍
android Chrome浏覽器是運行在模擬器或設備上的一個程序,盡最大的努力為用戶提供良好的WEB服務,就如其它許多浏覽器事件一樣,他的穩定性和智能型絕對是業內一流
2009年4月27日,谷歌正式發布android 1.5 SDK;T-Mobile的G1英國手機用戶今天開始可以將其android升級至1.5版本,這一版本中新增了很多