hall_layout.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@android:color/background_light"
  6. android:orientation="vertical">
  7. <include
  8. layout="@layout/main_head"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentTop="true" />
  12. <ExpandableListView
  13. android:id="@+id/grid_user"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. android:layout_centerVertical="true"
  17. android:layout_marginBottom="50dp"
  18. android:background="@color/bg_logo"
  19. android:childDivider="@color/snow_darker"
  20. android:divider="@color/toolbox_bg"
  21. android:dividerHeight="@dimen/space_1"
  22. android:drawSelectorOnTop="false"
  23. android:layout_marginTop="45dp">
  24. </ExpandableListView>
  25. <include
  26. layout="@layout/main_bottom"
  27. android:layout_width="match_parent"
  28. android:layout_height="50dp"
  29. android:layout_alignParentBottom="true" />
  30. </RelativeLayout>