歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android中ExpandableListView控件基本使用

本文采用一個Demo來展示Android中ExpandableListView控件的使用,如如何在組/子ListView中綁定數據源。直接上代碼如下:

程序結構圖:

layout目錄下的 main.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.     <!-- 我們會自己定義listview的顯示方式(在另外一個布局文件裡邊)不用默認的方式   
  7.          如果自定義listview的顯示方式這裡這個android:id="@id/android:list" 必須這樣寫 -->  
  8.     <!-- android:drawSelectOnTop="false"此屬性用來設置listview上的背景顏色會不會  
  9.      擋住(覆蓋)內容 , 如果這是為false就表示不會覆蓋掉 -->   
  10.     <ExpandableListView   
  11.         android:id="@id/android:list"                 
  12.         android:layout_width="fill_parent"                  
  13.         android:layout_height="wrap_content"                
  14.         android:layout_weight="1"                 
  15.         android:drawSelectorOnTop="false"/>   
  16. </LinearLayout>  
Copyright © Linux教程網 All Rights Reserved