编程语言
首页 > 编程语言> > java – ExpandableListView的默认导航抽屉视图

java – ExpandableListView的默认导航抽屉视图

作者:互联网

Android Studio 2.1.2中,如果我创建默认导航活动,我会得到以下视图:

enter image description here

其中使用以下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类代码来获得我开始所需的基础.

提前致谢.

标签:navigationview,android,java,expandablelistview,android-navigationview
来源: https://codeday.me/bug/20190926/1818288.html