gpt4 book ai didi

android - 如何使用 ConstraintLayout 让第一个 View 缩小以适应剩余空间?

转载 作者:行者123 更新时间:2023-12-01 03:05:20 25 4
gpt4 key购买 nike

我有以下布局。通知 Z位于 Y 下方,但限制在底部。 Y 之间有一个很好的差距。和 Z ,由多余的垂直空间提供。这是我的想要的实际 存在 时的行为多余的垂直空间 .

enter image description here

但是,当显示键盘时,我用完了多余的垂直空间。

期望的行为(没有多余的垂直空间)当我用完垂直空间时,我希望发生以下情况:X ( ScrollView ),缩小以填充剩余空间,允许 YZ以全尺寸显示。

enter image description here

实际行为(没有多余的垂直空间) Y反而缩小。

enter image description here

我的来源如下。如何修改它以在两种情况下获得我想要的行为(多余的垂直空间和没有多余的垂直空间)?

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fbe9e7"
android:gravity="center"
android:text="X"
android:textSize="96sp">

</TextView>
</ScrollView>

<TextView
android:id="@+id/text_Y"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#f3e5f5"
android:gravity="center"
android:text="Y"
android:textSize="96sp"
app:layout_constraintTop_toBottomOf="@+id/scrollView" />

<TextView
android:id="@+id/text_Z"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#e1f5fe"
android:gravity="center"
android:text="Z"
android:textSize="96sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/text_Y"
app:layout_constraintVertical_bias="1" />

</androidx.constraintlayout.widget.ConstraintLayout>

问题主要源于 X ScrollView 需要为 0dp当垂直空间有限时,但 wrap_content当有多余的垂直空间时

注意:您可以通过在 Android Studio enter image description here 中的布局预览 Pane 中相应地拖动右下角来演示布局如何以更少的垂直空间运行

最佳答案

尝试这个

<?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"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constrainedHeight="true"
app:layout_constraintBottom_toTopOf="@+id/text_Y"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0"
app:layout_constraintVertical_chainStyle="packed">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#fbe9e7"
android:gravity="center"
android:text="X"
android:textSize="96sp">

</TextView>
</ScrollView>

<TextView
android:id="@+id/text_Y"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#f3e5f5"
android:gravity="center"
android:text="Y"
android:textSize="96sp"
app:layout_constraintBottom_toTopOf="@+id/text_Z"
app:layout_constraintTop_toBottomOf="@+id/scrollView"
app:layout_constraintVertical_bias="0" />

<TextView
android:id="@+id/text_Z"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#e1f5fe"
android:gravity="center"
android:text="Z"
android:textSize="96sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

关于android - 如何使用 ConstraintLayout 让第一个 View 缩小以适应剩余空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58278029/

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