วิธีเพิ่มส่วนท้ายใน NavigationView - ไลบรารีการออกแบบที่รองรับ Android
ฉันจะตั้งค่าส่วนท้ายและรายการโปรไฟล์เป็นได้NavitationViewอย่างไร? ดูเหมือนลิ้นชักการนำทาง Inbox by email NavitationViewรายการจะสูงเกินจริงโดยเมนูทรัพยากร แต่ผมไม่ทราบวิธีการตั้งค่ารายการด้านล่างไปเมนูทรัพยากรหรือวิธีการที่ฉันสามารถตั้งค่ามุมมองที่กำหนดเองเพื่อNavigationViewหรือด้านล่างชดเชย? ฉันได้ลองวางสิ่งนี้<LinearLayout...>เป็นมุมมองส่วนท้ายแล้ว แต่บนหน้าจอเล็ก ๆ ส่วนท้ายจะวางทับรายการและฉันไม่สามารถเลื่อนเมนูได้ฉันพยายามตั้งค่าช่องว่างส่วนท้ายNavigationViewแต่ส่วนท้ายก็ใช้ช่องว่างภายในเช่นกัน นี่ไม่ใช่การเลื่อนบนหน้าจอขนาดเล็ก: <android.support.design.widget.NavigationView android:id="@+id/drawer" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="start" app:headerLayout="@layout/kuona_drawer_header" app:menu="@menu/drawer"> <LinearLayout...> </android.support.design.widget.NavigationView> สิ่งนี้จะเลื่อน แต่ส่วนท้ายจะอยู่เหนือรายการเมนู: <android.support.design.widget.NavigationView android:id="@+id/drawer" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="start" android:paddingBottom="96dp" app:headerLayout="@layout/kuona_drawer_header" app:menu="@menu/drawer"> <LinearLayout...> </android.support.design.widget.NavigationView> res/menu/drawer.xmlไฟล์เมนูลิ้นชัก: <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <group android:checkableBehavior="single"> <item android:id="@+id/action_current_list" android:checked="true" android:icon="@drawable/ic_current_list" android:title="@string/current_list" /> <item android:id="@+id/action_manage_lists" android:icon="@drawable/ic_my_lists" …