0

NavigationDrawerActivity を使用しているアプリに取り組んでいます。ハンバーガー アイコンをタップすると、ナビゲーション ドロワーがスライドします。ただし、ハンバーガーから矢印までのアニメーションがカバーされます。とにかく、アクションバーの上ではなく、アクションバーの下で NavigationDrawer を使用できますか。

私が欲しいのはこれです: 矢印とアニメーションが表示されます

私が得ている方法はこれです: 引き出しはアニメーションをカバーします

4

2 に答える 2

0

とても簡単です。activity_layout.xml を変更するだけです

NavigationDrawer を使用してアクティビティを作成した場合は、次を参照してください。

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

<include
    layout="@layout/app_bar_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

 <android.support.design.widget.NavigationView
 ...
 />

そして、あなたはそれをに変更する必要があります

<RelativeLayout
... 
android:fitsSystemWindows="true"
>

    <android.support.design.widget.AppBarLayout
          android:id="@+id/app_bar_layout"
    ...
    >

         <android.support.v7.widget.Toolbar
         ...
         />

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.DrawerLayout
        android:layout_below="@id/app_bar_layout"
    ... 
    >

        <include
            layout="@layout/app_bar_main"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <android.support.design.widget.NavigationView
            ...
        />

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

</RelativeLayout> 
于 2016-01-14T12:31:32.220 に答える
0

これを試して !

 <LinearLayout
        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:orientation="vertical">


        <!-- The ActionBar -->
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:fitsSystemWindows="true"
            android:minHeight="?attr/actionBarSize"
            app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            android:background="?attr/colorPrimaryDark">
        </android.support.v7.widget.Toolbar>

        <android.support.v4.widget.DrawerLayout
            android:id="@+id/drawer_layout"
            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">


                <!-- The main content view, you should replace this with your content -->

                <TextView
                    android:id="@+id/textme"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    />
               <!-- The main content view -->


            </LinearLayout>


            <android.support.design.widget.NavigationView
                android:id="@+id/nvView"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_gravity="start"
                app:headerLayout="@layout/nav_header"
                app:menu="@menu/drawer_view"
                android:theme="@style/navbody"
                />

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

    </LinearLayout>
于 2016-01-14T13:32:17.333 に答える