2016-07-14 312 views
0

我在我的android應用程序上實現了導航欄,工作正常。但現在我的問題是,我的導航欄中的菜單變得很長,底部菜單位於導航欄下方。如何將導航抽屜放在導航欄的頂部? 棒棒糖和棉花糖都有相同的行爲。導航欄上方的導航欄

請在下面找到snip。

enter image description here

activity_main.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" 
android:fitsSystemWindows="true"> 

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

    <LinearLayout 
     android:id="@+id/container_toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="@android:color/white" 
     android:elevation="8dp" 
     android:orientation="vertical"> 

     <include 
      android:id="@+id/toolbar" 
      layout="@layout/toolbar" /> 
    </LinearLayout> 

    <FrameLayout 
     android:id="@+id/container_body" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <include layout="@layout/fragment_song_list_main" /> 
    </FrameLayout> 
</RelativeLayout> 

<android.support.design.widget.NavigationView 
    android:id="@+id/fragment_navigation_drawer" 
    android:layout_width="wrap_content" 
    android:layout_height="match_parent" 
    android:layout_gravity="start" 
    android:fitsSystemWindows="true" 
    app:headerLayout="@layout/nav_header_main" 
    app:menu="@menu/activity_main_drawer" /> 
</android.support.v4.widget.DrawerLayout> 
+0

但是,這不是」你的NavigationView的列表可以滾動嗎?我在Android Studio的導航抽屜模板上進行了測試,似乎當列表很長時,它會變成可滾動的,您必須滾動它才能看到最新的元素。 – Laura

+0

@Laura 它是可滾動的,最後一個菜單是「設置」,如上面的剪輯所示。滾動時,它會在設置中和導航欄下結束。 – klaydze

+0

也許這是一個主題問題。您的應用或活動主題是否具有以下2個屬性: false true。你也可以看看這個教程http://www.myandroidsolutions.com/2016/07/13/android-navigation-view-tabs/。也許它會幫助你。 – Laura

回答

0

把NavigationView的DrawerLayout外,並把這些都在的LinearLayout內有定向= 「垂直」

<LinearLayout... orientation="vertical"> 

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

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

    <android.support.design.widget.NavigationView 
     android:id="@+id/fragment_navigation_drawer" 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:fitsSystemWindows="true" 
     app:headerLayout="@layout/nav_header_main" 
     app:menu="@menu/activity_main_drawer" /> 

</LinearLayout> 
+0

謝謝你的建議,但它不工作,我收到了有關沒有抽屜的錯誤。 – klaydze