如何ListView
在导航抽屉中自定义 a,就像这里的第二张图片中的那样。
问问题
3724 次
1 回答
0
您可以使用Android 设计支持库的NavigationView(参见:Android 开发者博客)。
使用 NavigationView,您不必再使用 ListView。您可以简单地使用 填充抽屉菜单menu.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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<!-- your content layout -->
<android.support.design.widget.NavigationView
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.v4.widget.DrawerLayout>
于 2015-09-21T16:38:28.867 回答