Android:ScrollView包含两个嵌套的ConstraintLayout,无法水平填满屏幕

Posted

技术标签:

【中文标题】Android:ScrollView包含两个嵌套的ConstraintLayout,无法水平填满屏幕【英文标题】:Android: ScrollView containing two nested ConstraintLayouts, cant fill screen horizontally 【发布时间】:2020-11-19 16:20:27 【问题描述】:

我遇到以下 XML 问题:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:context=".MainActivity">
    <ScrollView
        android:layout_
        android:layout_
        android:fillViewport="true">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_
            android:layout_>

            <View
                android:id="@+id/block"
                android:layout_
                android:layout_
                android:layout_marginTop="8dp"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.5"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

            <LinearLayout
                android:id="@+id/linearLayout"
                android:layout_
                android:layout_
                android:background="#419E9E9E"
                android:orientation="horizontal"
                android:paddingTop="8dp"
                android:paddingBottom="8dp"
                app:layout_constraintTop_toBottomOf="@id/block"></LinearLayout>

            <androidx.constraintlayout.widget.ConstraintLayout
                android:id="@+id/holder"
                android:layout_
                android:layout_
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/linearLayout">

                <TextView
                    android:id="@+id/holderText"
                    android:layout_
                    android:layout_
                    android:layout_marginStart="50dp"
                    android:layout_marginLeft="50dp"
                    android:layout_marginTop="12sp"
                    android:gravity="center_vertical"
                    android:maxLines="4"
                    android:text="Hello World"
                    android:textColor="@color/colorPrimaryDark"
                    android:textSize="24sp"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="@+id/holder" />

                <Button
                    android:id="@+id/Button"
                    android:layout_
                    android:layout_
                    android:layout_marginTop="20dp"
                    android:layout_marginEnd="20dp"
                    android:layout_marginBottom="20dp"
                    android:text="Button"
                    app:layout_constraintBottom_toBottomOf="parent"
                    app:layout_constraintEnd_toEndOf="parent" />
            </androidx.constraintlayout.widget.ConstraintLayout>


        </androidx.constraintlayout.widget.ConstraintLayout>
    </ScrollView>

</androidx.constraintlayout.widget.ConstraintLayout>

垂直地,布局做我想要的:它放置最后一个布局并填满屏幕。 但是,当设备水平翻转时,由于app:layout_constraintBottom_toBottomOf="parent"对自身的约束,底部(嵌套的constraintlayout)消失了

“如何在保持水平滚动的同时用第二个布局填充屏幕?”

我已附上图片和演示库以隔离问题。

链接: https://github.com/taesookim0412/***_Question_Android_NestedConstraintLayouts_ScrollView

【问题讨论】:

【参考方案1】:

我找到了解决方案。代替 minHeight,您可以使用

app:layout_constraintHeight_min="100dp"

【讨论】:

以上是关于Android:ScrollView包含两个嵌套的ConstraintLayout,无法水平填满屏幕的主要内容,如果未能解决你的问题,请参考以下文章

android中Scrollview嵌套WebView问题

android scrollview 嵌套 viewpager 嵌套 gridview 冲突问题

android解决ScrollView嵌套ListView不能下拉刷新

android中ScrollView嵌套ListView或GridView显示位置问题

Android ScrollView中嵌套ListView

Android之ScrollView嵌套ListView