gpt4 book ai didi

android - ConstraintLayout 最大宽度百分比

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:18:39 28 4
gpt4 key购买 nike

我一直在试验 ConstraintLayout,有没有办法将 View 的最大宽度设置为父级的百分比(以及匹配约束的高度和 1:1 的尺寸比)?

这是不使用最大宽度的代码:

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

<FrameLayout
android:id="@+id/frameLayout3"
android:layout_width="0dp"
android:layout_height="259dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:background="@android:color/black"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toEndOf="@+id/imageView"
app:layout_constraintTop_toTopOf="parent"/>

<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@android:drawable/ic_menu_add"
app:layout_constraintBottom_toBottomOf="@+id/frameLayout3"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.3"/>

</android.support.constraint.ConstraintLayout>

这是结果:

平板电脑:

Tablet

电话:

Phone

最佳答案

我使用两个属性实现了最大宽度百分比:

app:layout_constraintWidth_max="wrap"
app:layout_constraintWidth_percent="0.4"

例子:

<TextView
android:id="@+id/textView2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text="Helo world"
android:textAlignment="viewStart"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_max="wrap"
app:layout_constraintWidth_percent="0.4" />

文本宽度将增加到父级的 40%,如果内容超过该宽度,则换行。

关于android - ConstraintLayout 最大宽度百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49255147/

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