Android中ExpandableListView的使用
ExpandableListView是android中可以实现下拉list的一个控件,具体的实现方法如下:
首先:在layout的xml文件中定义一个ExpandableListView
<LinearLayout
android:id=”@+id/linearLayout”
android:layout_width=”fill_parent”
android:layout_height=”fill_parent”
androidrien[……]