无法在ConstraintLayout中移动子元素

时间:2019-09-22 08:25:33

标签: android layout

我正在使用Android Studio GUI编辑器。将Constraintlayout作为根元素后,将Button添加到布局中。很快它就会跳到左上角。我无法将该按钮移动到布局的中心。请帮忙。

这是我的xml代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

here GUI is

0 个答案:

没有答案