gpt4 book ai didi

java - 修复了 ScrollView 下方的按钮不显示的问题

转载 作者:行者123 更新时间:2023-12-02 11:46:55 24 4
gpt4 key购买 nike

我想创建一个 ScrollView ,其中包含以编程方式添加的项目,并在底部有一个固定按钮。但在下面的代码中我看不到任何按钮。

代码:

<LinearLayout
android:id="@+id/list_warrantys"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
<LinearLayout
android:id="@+id/show_warratys"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">

</LinearLayout>
</ScrollView>
<Button
android:id="@+id/add_warranty"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@drawable/mybutton"
android:text="@string/add_button"
android:layout_marginBottom="5dp"/>
</LinearLayout>

Pciture of screen

最佳答案

<RelativeLayout android:id="@+id/list_warrantys"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android">

<ScrollView
android:layout_above="@+id/add_warranty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:id="@+id/show_warratys"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">

</LinearLayout>
</ScrollView>
<Button
android:id="@+id/add_warranty"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@drawable/mybutton"
android:text="@string/add_button"
android:layout_marginBottom="5dp"/>

使用 RelativeLayout 作为 root 并将 android:layout_alignParentBottom="true" 设置为您的按钮和 android:layout_above="@+id/add_warranty" code> 到您的 ScrollView

关于java - 修复了 ScrollView 下方的按钮不显示的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48136245/

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