如何在xml Android studio中使用DrawerLayout

时间:2015-12-07 03:03:15

标签: android xml drawerlayout

嗨我知道这个问题太傻了,但这对申请来说真的很重要。使用xml是一件大事。我面临很多问题。

它不允许我只是拖放东西,当我这样做时,它放置在其他位置。

我可以管理内部相对布局,但 DrawerLayout 我无法做我想做的事情。这是我的 XML

<android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer_layout"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">


    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"/>

        <!--  -->
        <fragment
            xmlns:android="http://schemas.android.com/apk/res/android"
             xmlns:tools="http://schemas.android.com/tools"

             android:id="@+id/fragment"
             android:name="corp.msf.com.facebookconnect.MainFragment"
            tools:layout="@layout/fragment_main"
           android:layout_width="match_parent"
            android:layout_height="wrap_content" />

</android.support.v4.widget.DrawerLayout>

我上面和下面都有工具栏,我希望片段来。但片段占据了所有位置(工具栏上的重叠)。我如何指定以及如何轻松地使用xmls。欢迎任何帮助。谢谢阅读。

1 个答案:

答案 0 :(得分:1)

用于工具栏和片段。

将线性布局的方向设置为垂直,如下所示

<android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer_layout"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"/>

        <fragment
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
             android:id="@+id/fragment"
             android:name="corp.msf.com.facebookconnect.MainFragment"
            tools:layout="@layout/fragment_main"
           android:layout_width="match_parent"
            android:layout_height="match_parent" />

</LinearLayout>


</android.support.v4.widget.DrawerLayout>