Mainmenu布局似乎不是所需的布局

时间:2017-07-20 09:09:20

标签: android xamarin

我是Xamarin的新手。我有问题将Main_Menu.axml布局修复到我想要的布局,该布局位于下面的链接上。如何将布局放在上面,我的gridview在下面?我需要帮助。

所需的布局在

之下

enter image description here

我当前的Mainmenu.axml代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:weightSum="1"
    android:orientation="vertical"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:background="@drawable/background">

    <include
        android:id="@+id/toolbar"
        layout="@layout/sublayout_Toolbar" />
  <android.support.v4.widget.DrawerLayout
     xmlns:app="http://schemas.android.com/apk/res-auto"
     android:id="@+id/drawer_layout"
     android:layout_width="match_parent"
     android:layout_height="match_parent">
<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="0.4" />
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0.6">
            <GridView
                android:id="@+id/mainMenu_GridView"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:numColumns="2"
                android:listSelector="@null"
                android:verticalSpacing="0dp"
                android:horizontalSpacing="0dp" />
        </LinearLayout>
        <android.support.design.widget.NavigationView
            android:id="@+id/nav_view"
            android:layout_height="match_parent"
            android:layout_width="wrap_content"
            android:layout_gravity="start"
            android:background="@color/light_blue" />
    </android.support.v4.widget.DrawerLayout>
</LinearLayout>

我目前的布局如下

enter image description here

0 个答案:

没有答案