我刚从com.android.support.constraint:constraint-layout:1.0.0-alpha7
更新为com.android.support.constraint:constraint-layout:1.0.0-alpha5
,但layout_constraintCenterX_toCenterX
和layout_constraintCenterY_toCenterY
丢失了。他们是否更改了他们的名字,或者是否有改变以使两个观点居中。
编辑 - 我确实在这里看到了他们的发布说明http://tools.android.com/recent/constraintlayout-alpha7available他们只是说它已被弃用了。但我想要一个解决方案(替代方案)。
答案 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
的发行说明中答案 2 :(得分:0)