view_menu_group.xml
1.15 KB
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/menuGroupNameView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_margin="5dp"
android:text="菜单分组"
android:textColor="@color/black"
android:textSize="18sp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/gray_ccc" />
<GridLayout
android:id="@+id/menuGridView"
android:columnCount="4"
android:layout_weight="1"
android:foregroundGravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<View
android:layout_marginTop="8dp"
android:background="@color/gray_ccc"
android:layout_width="match_parent"
android:layout_height="10dp" />
</LinearLayout>