blob: c03d16944165c5123e04d0b3f3e29b43441e0349 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:padding="10dp" >
<ExpandableListView
android:id="@+id/view_list"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="1" >
</ExpandableListView>
</LinearLayout>
|