在android中的ListView中添加Header

前端之家收集整理的这篇文章主要介绍了在android中的ListView中添加Header前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要在listview中添加标题,标题应始终显示甚至滚动列表.

是否有可能在Android列表视图?

解决方法

适合我的解决方案是创建一个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具有@android:id / list作为ID.

原文链接:https://www.f2er.com/android/317355.html

猜你在找的Android相关文章