gpt4 book ai didi

android - 如何在抽屉导航内集成可扩展 ListView ?

转载 作者:行者123 更新时间:2023-11-30 05:06:07 26 4
gpt4 key购买 nike

我为我的可扩展 ListView 创建了一个项目。此外,在我的另一个主要项目中,我创建了一个抽屉导航。一切正常,因为它是自己的。不幸的是,我想在我的抽屉导航中显示这个可扩展 ListView ,但我不知道从哪里开始。我觉得应该有一些小的补充(已经有适配器和东西)但说真的我不知道如何在抽屉内实现布局。我搜索了这个主题,所有示例和答案对我来说都不太清楚。

你能给我指明正确的方向吗?

最佳答案

您可以通过在 NavigationDrawer 中添加 ExpandableListView 来实现,如下所示:

您可以使用自定义 ListView 创建它。

看下面代码activity_navigation_view.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
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">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />

<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">

<ExpandableListView
android:id="@+id/navigationmenu"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginTop="192dp"
android:background="@android:color/white">
</ExpandableListView>
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>

只需为它创建适配器并像普通的 ExpandableListView 一样使用它。

关于android - 如何在抽屉导航内集成可扩展 ListView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54569457/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com