gpt4 book ai didi

java - 如何在 ListView 下方添加 View

转载 作者:行者123 更新时间:2023-11-30 09:24:10 25 4
gpt4 key购买 nike

我在 SO 上发现的主题很少,但它们不是我要搜索的内容。其中之一就是这个Android ListActivity - how to add a view below the ListView?

我知道我可以在 ListView 的页脚放置一个 View (如按钮)。这意味着所需的 View 将在最后一个 View 之后定位自己。

我想知道如何将 View 定位在屏幕的末尾(正下方)。请检查下面两张图片:

enter image description here

enter image description here

我想在 Java 代码中执行此操作。有任何想法吗?

最佳答案

试试下面的代码

<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/button1"
>

</ListView>

<Button
android:id="@+id/button1"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Button" />

关于java - 如何在 ListView 下方添加 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15815232/

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