1

我刚刚更新到com.android.support.constraint:constraint-layout:1.0.0-alpha7fromcom.android.support.constraint:constraint-layout:1.0.0-alpha5但是layout_constraintCenterX_toCenterX并且layout_constraintCenterY_toCenterY丢失了。他们是否更改了名称,或者是否有替代方案可以将两个视图居中。

编辑- 我确实在这里看到了他们的发布说明http://tools.android.com/recent/constraintlayout-alpha7available他们只是说它已被弃用。但我想要一个解决方案(替代方案)。

4

3 回答 3

3

如果您想将 B 的中心与 A 的中心对齐,那么您应该让 B 将其左右与 A 的左右对齐。

这是一个示例 -text2将位于 的下方和中心text1

<TextView
    android:id="@+id/text1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:labelFor="@+id/text2"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent" />

<TextView
    android:id="@+id/text2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintLeft_toLeftOf="@+id/text1"
    app:layout_constraintRight_toRightOf="@+id/text1"
    app:layout_constraintTop_toBottomOf="@+id/text1" />
于 2016-09-13T10:23:31.197 回答
0

支持 RTL 的简单解决方案

app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias=".5"

没有 RTL 支持

app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintHorizontal_bias=".5"

您可以根据需要删除app:layout_constraintHorizo ​​ntal_bias

我还在这里报告了 RTL 错误:

链接 1

链接 2

于 2016-09-17T13:27:12.330 回答
0

是的,它在 ConstraintLayout-alpha 7 的发行说明

在此处输入图像描述

于 2016-09-13T10:15:24.647 回答