这是 Android Studio 的错误吗?

Is this a bug at Android Studio?

我制作了 UI 个按钮来通过约束布局输入文本。 例如下图。

但是,我感到奇怪的是 android studio 变得非常慢,因为我放了更多 UIs 并且自适应挂钩允许我设置,有时会消失(ex.some 按钮允许 disapper head图像上方的行)。它应该使用非常大的内存,我猜可用内存来计算位置并重新渲染 UI。 我可以避免这种情况吗?或使用其他布局制作相同 UI 的替代方法。我对这个问题很紧张,因为我无法理解使网格灵活缩放的最佳方法UI.Any 提示会帮助我。

我可以使用包含按钮嵌套约束视图的网格布局来解决问题,这似乎是相对定位的最佳方式 UI。

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

<EditText
        android:layout_width="456dp"
        android:layout_height="64dp"
        android:inputType="textPersonName"
        android:text="Name"
        android:ems="10"
        android:id="@+id/editText"
        android:layout_marginTop="16dp"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_marginStart="16dp"
        app:layout_constraintLeft_toLeftOf="parent"
        android:layout_marginEnd="16dp"
        app:layout_constraintRight_toRightOf="parent" />

    <GridLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:columnCount="8"
        android:rowCount="5"
        android:useDefaultMargins="true"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_marginBottom="32dp"
        android:foregroundGravity="center_horizontal"
        android:layout_marginStart="16dp"
        app:layout_constraintLeft_toLeftOf="parent"
        android:layout_marginEnd="16dp"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_marginTop="8dp"
        app:layout_constraintTop_toBottomOf="@+id/editText"
        app:layout_constraintVertical_bias="0.81">

        <Button
            android:text="button"
            android:layout_width="88dp"
            android:background="@drawable/oval_btn"
            android:id="@+id/str_wa"
            android:layout_height="88dp"
            tools:layout_editor_absoluteY="520dp"
            tools:layout_editor_absoluteX="529dp" /> ・・・・・・

你可以随意放置。