gpt4 book ai didi

android - ConstraintLayout 问题(最大宽度、尺寸比和链样式)

转载 作者:行者123 更新时间:2023-12-05 00:16:45 24 4
gpt4 key购买 nike

我在 ConstraintLayout 和特定 View 方面遇到问题。

想要什么:3 个比例为 6:5 的 ImageView ,第一个较大,另外两个垂直堆叠在其右侧。整个 View 的最大宽度为 414dp。

当尝试将水平链样式设置为压缩时, View 根本不会显示超过 414dp。在该限制下或除包装以外的链条样式中不存在任何问题。

这里是

我错过了什么吗?

最佳答案

为了实现你想要的,我相信你必须将一个 ConstraintLayout 嵌套在另一个 ConstraintLayout 中。

问题是你不能在同一个 View 上同时定义 app:layout_constraintWidth_percentlayout_constraintWidth_max ;其中每一个都是如何将 View 设置为“匹配约束”的一个选项。

MATCH_CONSTRAINT dimensions (Added in 1.1)

When a dimension is set to MATCH_CONSTRAINT, the default behavior is to have the resulting size take all the available space. Several additional modifiers are available:

  • layout_constraintWidth_min and layout_constraintHeight_min: will set the minimum size for this dimension
  • layout_constraintWidth_max and layout_constraintHeight_max: will set the maximum size for this dimension
  • layout_constraintWidth_percent and layout_constraintHeight_percent: will set the size of this dimension as a percentage of the parent

(来自 https://developer.android.com/reference/android/support/constraint/ConstraintLayout )

您可以通过让内部 ConstraintLayout 指定其最大宽度,然后让该内部 ConstraintLayout 的 ImageView 子级指定其百分比来解决此问题。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="wrap_content">

<android.support.constraint.ConstraintLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="#eee"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintWidth_max="414dp">

<ImageView
android:id="@+id/main_imageview"
android:layout_width="0dp"
android:layout_height="0dp"
android:scaleType="fitXY"
android:background="#caf"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintDimensionRatio="H,6:5"
app:layout_constraintWidth_percent="0.666"/>

<ImageView
android:id="@+id/second_imageview"
android:layout_width="0dp"
android:layout_height="0dp"
android:scaleType="fitXY"
android:background="#fac"
app:layout_constraintTop_toTopOf="@+id/main_imageview"
app:layout_constraintLeft_toRightOf="@+id/main_imageview"
app:layout_constraintBottom_toTopOf="@+id/third_imageview"
app:layout_constraintDimensionRatio="W,6:5"/>

<ImageView
android:id="@+id/third_imageview"
android:layout_width="0dp"
android:layout_height="0dp"
android:scaleType="fitXY"
android:background="#afc"
app:layout_constraintTop_toBottomOf="@+id/second_imageview"
app:layout_constraintLeft_toRightOf="@+id/main_imageview"
app:layout_constraintBottom_toBottomOf="@+id/main_imageview"
app:layout_constraintDimensionRatio="W,6:5"/>

</android.support.constraint.ConstraintLayout>

</android.support.constraint.ConstraintLayout>

enter image description here

enter image description here

关于android - ConstraintLayout 问题(最大宽度、尺寸比和链样式),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52992290/

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