可能是你可以使用listview
的navigationView
<?xml version="1.0" encoding="utf-8"?>
<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">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/main_toolbar" />
</FrameLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"/>
<ListView
android:id="@+id/menuList"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.DrawerLayout>
內與您使用列表視圖不能使用app:header
和app:menu
。您必須手動創建標題。
無論您是否使用「NavigationView」,抽屜寬度都應該由'DrawerLayout'正確處理。 – Brucelet
您是對的。我想我只看到過設置了特定寬度的DrawerLayout示例(例如「260dp」),然後閱讀了一些關於NavigationView的內容,這意味着處理正確的寬度是該小部件的特定增強。 – gordonwd