Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android入門第七篇之ListView (二)

Android入門第七篇之ListView (二)

編輯:Android開發實例

Android入門第六篇之ListView (一) ,講的是如何制作一個具有兩行文本的 自定義控件 ,作為ListView的Item的使用方法。這篇接下來也是圍繞ListView和Item,更加深入地介紹它們的用法。

       首先,先來看看本文代碼運行的結果,本文的Item比上一篇中的Item多出左邊的圖標:



      main.xml的源代碼,跟上一篇的一樣,這裡就不作解釋了,直接貼出my_imageitem.xml的代碼,就是它實現ImageItem的UI:

 

 
  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <RelativeLayout   
  3.          android:id="@+id/RelativeLayout01"   
  4.          android:layout_width="fill_parent"   
  5.          xmlns:android="http://schemas.android.com/apk/res/android"   
  6.          android:layout_height="wrap_content"   
  7.          android:paddingBottom="4dip"   
  8.          android:paddingLeft="12dip"> 
  9.          <ImageView   
  10.                android:layout_width="wrap_content"   
  11.                android:layout_height="wrap_content"   
  12.                android:id="@+id/ItemImage">   
  13.          </ImageView> 
  14.          <TextView   
  15.                android:text="TextView01"   
  16.                android:layout_height="wrap_content"   
  17.                android:textSize="30dip"   
  18.                android:layout_width="fill_parent"   
  19.                android:layout_toRightOf="@+id/ItemImage"   
  20.                android:id="@+id/ItemTitle"> 
  21.          </TextView> 
  22.          <TextView   
  23.                android:text="TextView02"   
  24.                android:layout_height="wrap_content"   
  25.                android:layout_width="fill_parent"   
  26.                android:layout_toRightOf="@+id/ItemImage"   
  27.                android:layout_below="@+id/ItemTitle"   
  28.                android:id="@+id/ItemText"> 
  29.          </TextView> 
  30. </RelativeLayout> 

 

      解釋一下 my_imageitem.xml的代碼:這裡使用了RelativeLayout布局,控件的關鍵的屬性是:

ItemTitle的屬性 android:layout_toRightOf="@+id/ItemImage" ,ItemTitle在ItemImage的右邊;

ItemText的屬性 android:layout_toRightOf="@+id/ItemImage",ItemText在ItemImage的右邊, android:layout_below="@+id/ItemTitle", ItemText 在 ItemTitle的下面。

 

       最後,貼出JAVA的源代碼,這裡的源代碼跟上一篇的很類似,只是修改了一部分,引入Item Image:

 

 
  1. @Override    
  2.    public void onCreate(Bundle savedInstanceState) {     
  3.        super.onCreate(savedInstanceState);     
  4.        setContentView(R.layout.main);     
  5.        //綁定XML中的ListView,作為Item的容器     
  6.        ListView list = (ListView) findViewById(R.id.MyListView);     
  7.             
  8.        //生成動態數組,並且轉載數據     
  9.        ArrayList<HashMap<String, Object>> lstImageItem = new ArrayList<HashMap<String, Object>>();     
  10.        for(int i=0;i<10;i++)     
  11.        {     
  12.         HashMap<String, Object> map = new HashMap<String, Object>();     
  13.         map.put("ItemImage", R.drawable.icon);//添加圖像資源的ID     
  14.         map.put("ItemTitle", "This is Title.....");     
  15.         map.put("ItemText", "This is text.....");     
  16.         lstImageItem.add(map);     
  17.        }     
  18.        //生成適配器的ImageItem <====> 動態數組的元素,兩者一一對應     
  19.        SimpleAdapter saImageItems = new SimpleAdapter(this, //沒什麼解釋     
  20.                                                 lstImageItem,//數據來源      
  21.                                                 R.layout.my_imageitem,//ListItem的XML實現     
  22.                                                      
  23.                                                 //動態數組與ImageItem對應的子項             
  24.                                                 new String[] {"ItemImage","ItemTitle", "ItemText"},      
  25.                                                      
  26.                                                 //ImageItem的XML文件裡面的一個ImageView,兩個TextView ID     
  27.                                                 new int[] {R.id.ItemImage,R.id.ItemTitle,R.id.ItemText});     
  28.        //添加並且顯示     
  29.        list.setAdapter(saImageItems);     
  30.    }    
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved