android中ListView的簡單使用

來源:互聯網
上載者:User

ListView控制項在android中控制項類中,算是比較複雜的一種,其實現一般包含以下幾個部分1)資料的準備2)構建適配器3)顯示資料在使用ListVIew這個控制項時,我發現好多人都出現了這樣的問題"your content must have a listview whose id attribute is"android.R.id.List”錯誤,   然後好多網友給出的答案就是,在.xml中 android:id="@+id/list" 改為 android:id="@+id/android:list“其實並不一定是這樣的錯誤。首先要區別採用的是何種使用ListView方法。ListView的控制項有兩種使用方法,一、使用android內部的ListView【以一個例子來說明】1.主.xml檔案 【注意紅色部分】<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    tools:context=".MainActivity"     android:orientation="vertical"> <ListView         android:id="@+id/android:list"        android:layout_height="wrap_content"        android:layout_width="fill_parent"        android:drawSelectorOnTop="false"        android:scrollbars="vertical"                ></ListView> </LinearLayout>2.ListView顯示的內容.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   android:id="@+id/linelayout"    android:layout_height="wrap_content"    android:layout_width="fill_parent"    android:orientation="horizontal"><TextView    android:id="@+id/key"    android:layout_height="wrap_content"        android:layout_width="wrap_content"    android:textColor="#aa0000"    /><TextView     android:id="@+id/value"    android:layout_height="wrap_content"     android:layout_width="wrap_content"     /></LinearLayout>3.java檔案繼承了ListActivity類,而不是Activity類public class MainActivity extends ListActivity {protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  //注意此處  沒有用findViewById來取得ListView控制項的id//建立hashmap型資料  ArrayList<HashMap<String,String>> mylist=new ArrayList<HashMap<String,String>>();  HashMap<String,String> map1=new HashMap<String,String>();  HashMap<String,String> map2=new HashMap<String,String>();  map1.put("key", "張三");  map1.put("value", "學生");  map2.put("key", "李四");  map2.put("value", "老師");  mylist.add(map1);  mylist.add(map2); //構建適配器  SimpleAdapter listAdapter=new SimpleAdapter(this,mylist,R.layout.hashmap,    new String[]{"key","value"},new int[]{R.id.key,R.id.value});//適配器中的資料時如何傳遞到ListView的,    setListAdapter(listAdapter);}二、自訂ListView1.主xml檔案與上面只有一處區別android:id="@+id/list"2.listview的布局檔案: 同上3.java檔案protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  listview=(ListView)findViewById(R.id.list);  ArrayList<HashMap<String,String>> mylist=new ArrayList<HashMap<String,String>>();  HashMap<String,String> map1=new HashMap<String,String>();  HashMap<String,String> map2=new HashMap<String,String>();  map1.put("key", "張三");  map1.put("value", "學生");  map2.put("key", "李四");  map2.put("value", "老師");  mylist.add(map1);  mylist.add(map2);   SimpleAdapter listAdapter=new SimpleAdapter(this,mylist,R.layout.hashmap,    new String[]{"key","value"},new int[]{R.id.key,R.id.value});  //listview這個對象添加setAdapter對象 listview.setAdapter(listAdapter);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.