我有seguent NavigationDrawer,没关系:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<FrameLayout
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
<ListView
android:id="@+id/drawer"
android:layout_width="240dp"
android:layout_gravity="start"
android:background="#FFF"
android:choiceMode="singleChoice"
android:layout_height="match_parent">
</ListView>
当我尝试自定义navigationDrawer
时,问题就出现了,它应该在"static"
中插入一个ListView
文字(就像TextView
一样),而不是adapter
1}}。