使用ConstraintLayout,我正在尝试将视图锚定到2 guidelines
,如附图中的蓝图所示。
然而,视图位于屏幕的左上角,而不受两条准则的限制。
知道为什么会这样吗?
谢谢!
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="98dp"
android:layout_height="17dp"
android:background="#FAFA00"
app:layout_constraintTop_toTopOf="@+id/guideline"
app:layout_constraintRight_toLeftOf="@+id/guideline2"
android:layout_marginEnd="32dp"
android:layout_marginRight="32dp"
android:layout_marginTop="64dp"/>
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/guideline"
android:orientation="horizontal"
tools:layout_editor_absoluteY="247dp"
tools:layout_editor_absoluteX="0dp"
app:layout_constraintGuide_end="576dp"/>
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/guideline2"
android:orientation="vertical"
tools:layout_editor_absoluteY="0dp"
tools:layout_editor_absoluteX="422dp"
app:layout_constraintGuide_end="178dp"/>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:0)
在beta4中修复了与指南相关的错误 - 尝试更新,它应该可以解决您的问题。