gpt4 book ai didi

RelativeLayout 中的 Android ListView 高度

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

我有这个布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mainContainer"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
android:id="@+id/legend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/BannerView"
android:text="Legend"
android:textColor="#FFFFFF" />

<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/legend" >

</ListView>

<Button
android:id="@+id/generateBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/list"
android:text="Generate" />

</RelativeLayout>

但是按钮在屏幕外。如何设置 ListView 高度以查看下面的按钮?

最佳答案

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mainContainer"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
android:id="@+id/legend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/BannerView"
android:text="Legend"
android:textColor="#FFFFFF" />

<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/generateBtn"
android:layout_below="@id/legend" >

</ListView>

<Button
android:id="@id/generateBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/list"
android:layout_alignParentBottom="true"
android:text="Generate" />

</RelativeLayout>

关于RelativeLayout 中的 Android ListView 高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13208973/

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