Constraint-Layout alpha7 ConstraintCenterX / Y属性缺失

时间:2016-09-13 10:00:19

标签: android android-constraintlayout

我刚从com.android.support.constraint:constraint-layout:1.0.0-alpha7更新为com.android.support.constraint:constraint-layout:1.0.0-alpha5,但layout_constraintCenterX_toCenterXlayout_constraintCenterY_toCenterY丢失了。他们是否更改了他们的名字,或者是否有改变以使两个观点居中。

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

3 个答案:

答案 0 :(得分:2)

如果您想将B的中心与A的中心对齐,那么B应该让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" />

答案 1 :(得分:0)

是的,它在ConstraintLayout-alpha 7 here

的发行说明中

enter image description here

答案 2 :(得分:0)

支持RTL的简单解决方案

make pdflatex

没有RTL支持

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

如果您愿意,可以删除 app:layout_constraintHorizo​​ntal_bias

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

Link 1

Link 2