在Android Studio 2.1.2中,如果我创建默认导航活动,我会得到以下视图:
其中使用以下activity_main.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />
</android.support.v4.widget.DrawerLayout>
如您所见< android.support.design.widget.NavigationView />使用app:menu =“@ menu / activity_main_drawer”显示activity_main_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/nav_camera"
android:icon="@drawable/ic_menu_camera"
android:title="Import" />
<item
android:id="@+id/nav_gallery"
android:icon="@drawable/ic_menu_gallery"
android:title="gallery" />
<item
android:id="@+id/nav_slideshow"
android:icon="@drawable/ic_menu_slideshow"
android:title="Slideshow" />
<item
android:id="@+id/nav_manage"
android:icon="@drawable/ic_menu_manage"
android:title="Tools" />
</group>
<item android:title="Communicate">
<menu>
<item
android:id="@+id/nav_share"
android:icon="@drawable/ic_menu_share"
android:title="Share" />
<item
android:id="@+id/nav_send"
android:icon="@drawable/ic_menu_send"
android:title="Send" />
</menu>
</item>
</menu>
现在我的计划是替换activity_main_drawer.xml中定义的菜单列表,而是使用ExpandableListView.因为我希望我的菜单项具有子类别,例如,菜单项目汽车将具有柴油,汽油和混合等的子类别.我已经进行了研究,似乎没有人拥有我需要的确切工作解决方案.
我看了看这里:
> The Open Tutorials
> Implement expandablelistview in navigation drawer activity made by android studio
> Android: 2 or more ExpandableListView inside Navigation Drawer
> How to create an expandable listView inside navigation drawer?
以及那里提到的后续链接.
N.B:上面的链接提到在导航抽屉中使用ListView,Android Studio通过使用activity_main_drawer.xml使用菜单项来实现这一点已不再适用.
有人能为我提供一个有效的例子吗?
要重新迭代,我想要在默认导航抽屉活动中的可扩展列表视图.我已经收集到了,我需要XML文件和java类代码来获得我开始所需的基础.
提前致谢.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。