此视图不受Android Studio约束

时间:2018-07-27 05:59:53

标签: android android-layout android-studio-3.0

我是android studio中的新手,刚刚安装了3.1.3,当我创建新项目时,没有“ hello world!”布局中的文字。即使在教程中,当我们创建新项目时,“ hello world”文本也会自动出现。然后,我尝试按照此链接中的说明进行操作

This view is not constrained

我尝试使用“推断约束”,但它不起作用,我该如何解决??

erorr picture

1 个答案:

答案 0 :(得分:0)

您将约束布局用作父布局,因此在使用约束布局,用户Relative,线性或任何其他布局作为父布局时,您必须提供顶部,底部,左侧和右侧的视图,或为这样的视图提供约束布局约束借助约束

将视图约束在父中心的示例
        <Button
        android:id="@+id/button2"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>