gpt4 book ai didi

android - 在 Android 的 ListView 中添加页眉

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:16:28 25 4
gpt4 key购买 nike

我需要在我的 ListView 中添加标题,并且标题应该始终显示,即使是滚动列表。

在android ListView 中可以吗?

最佳答案

对我有用的解决方案是创建一个 TableLayout,其中一行包含标题,一行包含列表,如下所示:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<include layout="@layout/header" />

<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</TableLayout>

请确保ListView的ID是@android:id/list。

关于android - 在 Android 的 ListView 中添加页眉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7514844/

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