gpt4 book ai didi

android - 如何呈现空 ListView ?

转载 作者:搜寻专家 更新时间:2023-11-01 07:41:15 26 4
gpt4 key购买 nike

如果没有给 ListView 任何项目,它是如何呈现的?它是否仍会扩展以填充分配给它的布局空间?

最佳答案

是的,它仍然会填充空间,但您可以让它显示另一个 View 而不是显示列表。这是一个例子:

<FrameLayout
android:id="@+id/GLFrame"
android:layout_height="fill_parent"
android:layout_width="fill_parent" />
<TextView
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:id="@android:id/empty"
android:gravity="center_vertical|center_horizontal|center"
android:text="@string/no_songs_found"
android:textColor="#FFF"
android:textSize="20sp"
android:textStyle="bold" />
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/list"
android:cacheColorHint="#0000" />

这里的关键是 "@android:id/empty""@android:id/list" id。这些告诉 Android 它应该显示列表或其他 View (如果列表为空)。

关于android - 如何呈现空 ListView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2313872/

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