gpt4 book ai didi

android - Android 的 'Vertical Bias' 中的 'Horizontal Bias' 或 'ConstraintLayout' 用于什么?

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

我对 Android 开发还很陌生,今天我想知道在“ConstraintLayout”中分别使用“垂直偏差”和“水平偏差”是什么。

最佳答案

简而言之 - 它告诉布局如何在受约束的 View 之间放置 View 。
如果您在 ConstraintLayout 中的 View 有这些:

app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
默认会放在中间。
但您可以添加:
app:layout_constraintHorizontal_bias="1" to place it at the end of the constraint (parent in this example)
app:layout_constraintHorizontal_bias="0" to place it at the beginning of the constraint (parent in this example)
app:layout_constraintHorizontal_bias="0.33" to place it on/third of the space from the begining of the constraint (parent in this example)
等等
垂直偏差在垂直方向上也是如此。

关于android - Android 的 'Vertical Bias' 中的 'Horizontal Bias' 或 'ConstraintLayout' 用于什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69604403/

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