gpt4 book ai didi

Android:如何对齐底部的按钮和上方的 ListView ?

转载 作者:IT老高 更新时间:2023-10-28 13:12:02 24 4
gpt4 key购买 nike

我想在 ListView 的底部有一个按钮。

如果我使用 relativeLayout/FrameLayout,它会对齐,但 listView 会下降到非常底部。

(在底部按钮的后面)

enter image description here

框架布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentBottom="true">
<Button
android:id="@+id/btnButton"
android:text="Hello"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom" />
</FrameLayout>
</FrameLayout>

相对布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<Button
android:id="@+id/btnButton"
android:text="Hello"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom" />
</RelativeLayout>
</RelativeLayout>

以上两个代码仅与第一个图像一样工作。我想要的是第二张图片。

有人可以帮忙吗?

谢谢。

最佳答案

FrameLayout 的目的是将事物相互叠加。这不是你想要的。

在您的 RelativeLayout 示例中,您将 ListView 的高度和宽度设置为 MATCH_PARENT 这将使其占用相同数量的space 作为其父级,因此占用页面上的所有空间(并覆盖按钮)。

尝试类似:

<LinearLayout 
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ListView
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
</LinearLayout>

layout_weight 规定了如何使用额外空间。 Button 不想超出它需要的空间,所以它的权重为 0。 ListView 想要占用所有额外的空间,所以它有重量为 1。

您可以使用 RelativeLayout 完成类似的操作,但如果只是这两个项目,那么我认为 LinearLayout 更简单。

关于Android:如何对齐底部的按钮和上方的 ListView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4936553/

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