gpt4 book ai didi

android - 如何在 Android ListView 的末尾显示一个按钮

转载 作者:IT王子 更新时间:2023-10-28 23:57:45 26 4
gpt4 key购买 nike

我想在 Android ListView 的末尾显示一个按钮。我怎样才能做到这一点?

我不想使用 alignparentbottom="true" 将其粘贴到 Activity 底部。使用 layout_below 对我也不起作用。

我当前的 XML:

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/main_bg">

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<ListView
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="false"
android:cacheColorHint="#ff6a00"
android:divider="#ff8f40"
android:dividerHeight="1px" />

</LinearLayout>

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50sp"
android:background="#676767"
android:orientation="vertical">

<Button
android:layout_width="100px"
android:layout_height="wrap_content"
android:id="@+id/btnGetMoreResults"
android:layout_marginLeft="10px"
android:text="Get more" />

</RelativeLayout>

</RelativeLayout>

最佳答案

您可能想使用 ListView#addFooterView()ListView 的底部添加一个 View

关于android - 如何在 Android ListView 的末尾显示一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2386593/

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