activity_index.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/background_color_first"
  6. >
  7. <include
  8. android:id="@+id/include_menuactionbar"
  9. layout="@layout/actionbar"/>
  10. <RelativeLayout
  11. android:id="@+id/ll_content"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. android:layout_below="@id/include_menuactionbar"
  15. android:layout_centerInParent="true"
  16. android:layout_marginBottom="@dimen/actionbar_height">
  17. <GridView
  18. android:id="@+id/grid_menu"
  19. style="@style/MenuGridViewStyle"
  20. android:numColumns="3">
  21. </GridView>
  22. </RelativeLayout>
  23. <LinearLayout
  24. android:id="@+id/root_container"
  25. android:layout_width="match_parent"
  26. android:layout_height="match_parent"
  27. android:layout_alignParentBottom="true"
  28. android:orientation="vertical">
  29. </LinearLayout>
  30. </RelativeLayout>