fragment_main.xml 799 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <ExpandableListView
  7. android:id="@+id/grid_user"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:layout_centerVertical="true"
  11. android:layout_marginBottom="10dp"
  12. android:layout_marginTop="45dp"
  13. android:background="@color/bg_logo"
  14. android:childDivider="@color/snow_darker"
  15. android:divider="@color/toolbox_bg"
  16. android:dividerHeight="@dimen/space_1"
  17. android:drawSelectorOnTop="false">
  18. </ExpandableListView>
  19. </LinearLayout>