gpt4 book ai didi

android - 如何在 ConstraintLayout 中制作具有最小高度的可拉伸(stretch) View ?

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

我想要实现的是组合两个 View ,其中一个具有固定的纵横比,另一个保持在第一个下方(除非第一个为第二个提供足够的空间)。

这是一个案例:

First case

这是第二种情况:

Second one

这两个 View 放在 ConstraintLayout 中。我尝试使用这部分代码:

<?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">

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/view1"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="0.75"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/view2"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintHeight_min="100dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/view1"/>

</androidx.constraintlayout.widget.ConstraintLayout>

但它只适用于第一种情况,即 View 2 有足够的空间。在第二种情况下,View 2 移动到 View 1 下方,并且它在屏幕之外。

编辑

我找到了解决方案,我对此并不感到自豪,但它确实有效。仍在等待更好的主意。怎么运行的?我将没有限制宽度的附加 View (占位符)放置到 MATCH_PARENT 但它有底部边距(模拟 View 2 的最小高度)。当空间大于最小高度时,占位符的行为与 View 1 相同,但在其他情况下,它会稍微变窄以保留底部边距。

<?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"
android:background="@android:color/black">

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/view1"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintDimensionRatio="0.75"
app:layout_constraintTop_toTopOf="parent"/>

<View
android:id="@+id/placeholder"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="100dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintDimensionRatio="0.75"
app:layout_constraintVertical_bias="0"
app:layout_constraintBottom_toBottomOf="parent"/>

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/view2"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@id/placeholder"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

首先,我没有看到您试图对第一个 View 的尺寸添加任何约束。如果您希望它具有 3:4 的固定宽高比,您应该将 app:layout_constraintDimensionRatio="H,3:4" 设置为您想要的 View 并删除 app:layout_constraintDimensionRatio="0.75". 因此您将不再需要占位符 View 。所以你的布局看起来像这样:

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/view1"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="H,3:4"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/view2"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/view1" />

但是,如果您希望将 view1 的高度保持在 75% 的屏幕比例,则应将占位符 View 替换为您设置 app:layout_constraintGuide_percent="0.75" 的水平指南。所以布局看起来像这样:

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/view1"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@id/guideline"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.75" />

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/view2"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/view1" />

另请记住,不建议在 ConstraintLayout 中使用 match_parent。相反,使用 0dp 高度/宽度尺寸并根据情况(顶部、底部/开始、结束)为边距设置适当的约束

关于android - 如何在 ConstraintLayout 中制作具有最小高度的可拉伸(stretch) View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54323946/

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