gpt4 book ai didi

android - 如何在android布局中创建固定页脚?

转载 作者:IT老高 更新时间:2023-10-28 21:44:34 24 4
gpt4 key购买 nike

我正在使用以下代码在 Activity 底部显示按钮。

<RelativeLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
>
<Button android:id="@+id/btnGetMoreResults"
android:layout_height="wrap_content"
android:layout_width="wrap_content"

android:text="Get more"
/>
</RelativeLayout>

和上面的 ListView 。当我在 ListView 中显示更多数据时,此按钮面板向下移动。谁能指导我如何在 Activity 底部修复它?

任何帮助将不胜感激。

最佳答案

选择正确的答案是错误的,该按钮将隐藏 ListView 的下部。正确的做法是先声明按钮,然后将列表放在按钮上方。

<Button android:id="@+id/btnGetMoreResults"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Get more"
android:layout_alignParentBottom="true"/>

<ListView
...
android:layout_above="@id/btnGetMoreResults"/>

关于android - 如何在android布局中创建固定页脚?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2318775/

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