我正在构建一个应用程序,我想在listview上显示导航抽屉。它填充抽屉但是当我点击抽屉上的选项时,它不起作用,而listview上的活动工作正常。示例代码如下
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:divider="@color/border_list_view"
android:dividerHeight="1dp"
android:background="@color/white" />
<ListView
android:id="@+id/listMsg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@color/border_list_view"
android:dividerHeight="1px"/>
</android.support.v4.widget.DrawerLayout>
如何实现这个想法?如果有人可以帮忙。提前谢谢。
答案 0 :(得分:0)
尝试使用android.support.v7.widget中的RecyclerView: https://developer.android.com/training/material/lists-cards.html