123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@android:color/background_light"
- android:orientation="vertical">
- <include
- layout="@layout/main_head"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true" />
- <ExpandableListView
- android:id="@+id/grid_user"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerVertical="true"
- android:layout_marginBottom="50dp"
- android:background="@color/bg_logo"
- android:childDivider="@color/snow_darker"
- android:divider="@color/toolbox_bg"
- android:dividerHeight="@dimen/space_1"
- android:drawSelectorOnTop="false"
- android:layout_marginTop="45dp">
- </ExpandableListView>
- <include
- layout="@layout/main_bottom"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:layout_alignParentBottom="true" />
- </RelativeLayout>
|