gpt4 book ai didi

android - 底部栏不显示 ScrollView 内容

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

我的布局有一个 ScrollView 和一个固定的底栏。

一旦我添加了带有两个按钮的底栏,ScrollView 项就不再可见。

我尝试更改父级布局,但它不起作用。

请在下面找到代码

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff">

<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal"
android:weightSum="2"

>

<Button
android:id="@+id/bottombar1"

android:layout_width="match_parent"
android:layout_height="wrap_content"

android:layout_weight="1"
android:background="@color/colorPrimary"
android:text="Add to Cart "
android:textColor="@color/White"

android:textStyle="bold" />

<Button
android:id="@+id/bottombar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"

android:layout_weight="1"
android:background="@color/colorPrimary"
android:text="Buy Now "
android:textColor="@color/White"


android:textStyle="bold" />
</LinearLayout>


<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_below="@id/toolbar"
android:background="#fff">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
android:orientation="vertical"

>


<TextView
android:id="@+id/text_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp"
android:text="Name"

android:textColor="#000"
android:textSize="20dp" />


<ImageView
android:id="@+id/image_full"
android:layout_width="220dp"
android:layout_height="300dp"
android:layout_gravity="center"
android:padding="20dp"
android:scaleType="fitXY" />

<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="none">

<LinearLayout

android:id="@+id/imageall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"></LinearLayout>
</HorizontalScrollView>

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:id="@+id/price_full"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:padding="20dp"
android:text="Price"
android:textColor="#000"
android:textSize="20dp"
android:textStyle="bold" />
</RelativeLayout>


<TextView
android:id="@+id/text_des"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp"
android:text="Full details"
android:textColor="#000"
android:textSize="20dp" />


</LinearLayout>

</ScrollView>

任何帮助都会非常有用。

谢谢。

最佳答案

在 ScrollView 中给出

    android:layout_above="<Id of your linear layout that contains two buttons>"

只有在工具栏下方指定才会使 ScrollView 拉伸(stretch)到屏幕底部。还要确保按钮的线性布局不会拉伸(stretch)全屏。

关于android - 底部栏不显示 ScrollView 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35476535/

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