gpt4 book ai didi

android - Jetpack Compose 中约束布局的权重

转载 作者:行者123 更新时间:2023-12-04 23:52:02 25 4
gpt4 key购买 nike

有什么方法可以在 中使用权重吗?喷气背包撰写 类似 XML 中的 ConstraintLayout 链:

<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="match_parent">

<View
android:id="@+id/first"
android:layout_width="0dp"
android:layout_height="48dp"
android:background="#caf"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/start"
app:layout_constraintHorizontal_weight="6"/>

<View
android:id="@+id/second"
android:layout_width="0dp"
android:layout_height="48dp"
android:background="#fac"
app:layout_constraintLeft_toRightOf="@+id/first"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintHorizontal_weight="4"/>

</android.support.constraint.ConstraintLayout>

目前, ConstraintLayoutScopeConstraintScope提供权重功能。 ConstraintLayoutScope提供 createHorizontalChain(vararg elements: ConstraintLayoutReference, chainStyle: ChainStyle) (或分别为 createVerticalChain),但没有为单个元素设置权重的选项。
有了指南、障碍和其他所有东西,我觉得这里缺少一些重要的东西。有没有办法在链中使用权重或模仿它们的行为?我不能只为元素指定一个固定宽度,因为 ConstraintLayout 的宽度必须与整个屏幕匹配。
注意:我了解新的 Jetpack Compose ConstraintLayout 对于复杂的嵌套布局结构(如 Android View ConstraintLayout)没有性能优势。我也知道 Row 和 Column 提供权重功能,但在我的情况下我必须使用 ConstraintLayout ( reason)

最佳答案

你试过fillMaxWidth(faction)修饰符?
我这样做并为我工作......

@Composable
fun ConstraintLayoutWeightDemo() {
ConstraintLayout(modifier = Modifier.fillMaxWidth()) {
val (refB1, refB2, refB3) = createRefs()
Text(
"Text 1",
modifier = Modifier
.constrainAs(refB1) {
start.linkTo(parent.start)
end.linkTo(refB2.start)
}
.fillMaxWidth(.3f) // <<<---- 30%
.background(Color.Red)
)
Text(
"Text 2",
modifier = Modifier
.constrainAs(refB2) {
start.linkTo(refB1.end)
end.linkTo(refB3.start)
}
.fillMaxWidth(.5f) // <<<---- 50%
.background(Color.Green)
)
Text(
"Text 3",
modifier = Modifier
.constrainAs(refB3) {
start.linkTo(refB2.end)
end.linkTo(parent.end)
}
.fillMaxWidth(.2f) // <<<---- 20%
.background(Color.Blue)
)
}
}

关于android - Jetpack Compose 中约束布局的权重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65658110/

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