gpt4 book ai didi

android - fragment ListView 将按钮推出屏幕

转载 作者:行者123 更新时间:2023-11-29 21:09:05 24 4
gpt4 key购买 nike

我想要的是我的框架布局遍布整个屏幕,直到它到达我位于屏幕底部的按钮。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.test.MainActivity">

<FrameLayout
android:id="@+id/container"
android:layout_height="wrap_content"
android:layout_width="match_parent">
</FrameLayout>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerInParent="true"
android:text="Compose"/>

</RelativeLayout>

唯一的问题是我在框架布局中加载了一个包含 ListView 的 fragment 。现在,当 ListView 变大时,它会将我的按钮推出屏幕。

有人知道吗?

最佳答案

试试这个:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.test.MainActivity">

<FrameLayout
android:id="@+id/container"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_above="@+id/bottomButton">
</FrameLayout>

<Button
android:id="@+id/bottomButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerInParent="true"
android:text="Compose"/>

</RelativeLayout>

关于android - fragment ListView 将按钮推出屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23519723/

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