使用ExpandableListView添加项目菜单的问题

时间:2019-07-22 22:15:52

标签: java android kotlin

我有一个ExpandableListView,但每个项目都有一个arrow_down。 事实是有些物品没有孩子...

第一个想法:当项目没有子项时删除arrow_down 第二个想法(我的最爱):在ExpandableListView之前和之后添加菜单项

问题是我尝试了一些代码,但是没有用...请任何人提供帮助??

<?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="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:fitsSystemWindows="true"
            app:headerLayout="@layout/nav_header_main">


        <ExpandableListView
                android:id="@+id/my_expandableList_view"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/nav_header_height"/>

</android.support.design.widget.NavigationView>

</android.support.v4.widget.DrawerLayout>

0 个答案:

没有答案