1

私はこの DrawerLayout と NavigationViews を扱ってきましたが、この問題を解決できないようです。Google のガイドラインによると、最初のナビゲーション バーはアプリ バーを覆う必要があり、2 番目のナビゲーション バーはアプリ バーを覆うべきではありません。

どうすればそれを達成できますか?私が何をしても、両方がアプリバーをカバーするか、両方がカバーしないようになります。

ナビゲーション ビューはかなり新しいので、適切な回答をグーグルで検索したり、overflow.com を調べたりすることはできませんでした。ガイド、ヘルプ、チュートリアル、サンプルなどは大歓迎です。

前にありがとう。

ここに私の activity.xml があります

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

    <!-- As the main content view, the view below consumes the entire
         space available using match_parent in both dimensions. -->
    <LinearLayout
            android:orientation="vertical"
            android:id="@+id/container"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            >
        <include
                android:id="@+id/app_bar"
                layout="@layout/app_bar">
        </include>
    </LinearLayout>


    <android.support.design.widget.NavigationView
            android:id="@+id/nav_draw"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            app:headerLayout="@layout/drawer_header"
            app:menu="@menu/drawer"/>
    <android.support.design.widget.NavigationView
            android:id="@+id/second_nav_draw"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="end"
            />
</android.support.v4.widget.DrawerLayout>
4

1 に答える 1