gpt4 book ai didi

android - 在 ListView 末尾添加一个 Button

转载 作者:行者123 更新时间:2023-11-29 15:10:07 25 4
gpt4 key购买 nike

我想在 ListView 的末尾添加一个按钮。我有以下 xml 文件。 ListView 及其内容出现,但按钮不显示。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minWidth="25px"
android:minHeight="25px">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/myListView" />
<Button
android:text="Project Download"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/download" />
</LinearLayout>

最佳答案

问题出在您的 ListView 中的属性 android:layout_height="match_parent"match_parent 表示 ListView 将填充所有空间。正确的做法是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minWidth="25px"
android:minHeight="25px">
<ListView
android:layout_width="match_parent"
android:layout_height="0dp"
android:weight="1"
android:id="@+id/myListView" />
<Button
android:text="Project Download"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/download" />
</LinearLayout>

关于android - 在 ListView 末尾添加一个 Button,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32617180/

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