| 123456789101112131415161718192021222324252627282930313233343536 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/background_color_first"
- >
- <include
- android:id="@+id/include_menuactionbar"
- layout="@layout/actionbar"/>
- <RelativeLayout
- android:id="@+id/ll_content"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@id/include_menuactionbar"
- android:layout_centerInParent="true"
- android:layout_marginBottom="@dimen/actionbar_height">
- <GridView
- android:id="@+id/grid_menu"
- style="@style/MenuGridViewStyle"
- android:numColumns="3">
- </GridView>
- </RelativeLayout>
- <LinearLayout
- android:id="@+id/root_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_alignParentBottom="true"
- android:orientation="vertical">
- </LinearLayout>
- </RelativeLayout>
|