导航抽屉中的菜单xml和ExpandableListView方向

时间:2016-07-20 13:10:01

标签: android navigation-drawer android-navigation-drawer navigationview android-navigationview

我实现了ExpandableListView,但我在菜单xml中也有项目,那么如何声明这个列表视图应该低于我的menu.xml中的一个项目?例如,如果我想在下面的位置项目下展开expandablelistview我该怎么办?这是我的代码:

menu.xml文件

<menu xmlns:android="http://schemas.android.com/apk/res/android">

    <group android:checkableBehavior="single">

        <item android:id="@+id/location" android:icon="@drawable/mylocation" android:title="@string/My_Location"  android:animateLayoutChanges="true"/>

    </group>

    <item android:title="@string/action_settings">
        <menu>
            <group android:checkableBehavior="single">
                <item android:id="@+id/profile" android:icon="@drawable/settings"
                    android:title="@string/Edit_Profile" android:animateLayoutChanges="true" />
                <item android:id="@+id/logout" android:icon="@drawable/logout"
                    android:title="@string/Log_Out"  android:animateLayoutChanges="true"/>
            </group>
        </menu>
    </item>

</menu>

和drawer_main.xml

<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/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="left|start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_main"
        app:menu="@menu/activity_main_drawer"
        android:nestedScrollingEnabled="true"
        app:itemIconTint="#FFFFFF"
        app:itemTextColor="#FFFFFF"
        android:background="#000000">

        <FrameLayout
            android:id="@+id/drawer_list_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <ExpandableListView
                android:id="@+id/navList"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>

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


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

所以我的问题是ExpandableListView仍然是顶级的,我不想使用layout_marginTop,因为它取决于用户屏幕。还有其他方法可以解决这个问题吗?

0 个答案:

没有答案