提问人:Telember 提问时间:7/9/2015 最后编辑:Gabriele MariottiTelember 更新时间:3/9/2016 访问量:1134
如何在 NavigationView 中添加其他布局
How to add other layout within NavigationView
问:
我试图在我的 NavigationView 中添加 Expandlistview,但它失败了。 我可以在标题下方添加布局吗?
activity_main布局
<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.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
答:
1赞
Ram Mandal
7/9/2015
#1
您可以在导航抽屉列表中使用 ListView,并将标题视图追加到包含可展开 ListView 的列表中。我不确定,但你可以检查一下
1赞
Amit Tumkur
3/9/2016
#2
我的解决方案是..如果您使用具有特定高度的标题布局,则对于 Ex 200DP。然后在activity_main.xml中包括边距顶部 0f 210dp 用于可扩展的 ListView 标签。.我希望您没有使用菜单进行导航视图
<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>
评论
ExpandableListView
提供相同的大小marginTop
。