我试图在我的NavigationView中添加Expandlistview但它失败了。 我可以在标题下添加布局吗?
activity_main layout
UIImagePickerController
答案 0 :(得分:1)
您可以在导航抽屉列表中使用listview,并将标题视图附加到包含可展开列表视图的列表中。我不确定,但你可以检查一下
答案 1 :(得分:1)
我的解决方案是..如果你使用具有特定高度的标题布局,对于ex 200dp ..那么在activity_main.xml中包括margin top 0f 210dp for expandable listview tag ..我希望你没有使用菜单导航视图
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.NavigationView
android:id="@+id/navigation"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/header">
<ExpandableListView
android:id="@+id/expanded_menu"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginTop="210dp" />
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>