ConstraintLayout编辑有偏见

时间:2017-07-27 16:37:02

标签: android android-constraintlayout

我一直在尝试为我的应用程序制作一个GUI(使用ConstraintLayout),其中我的图像就像按钮对齐,然而,这些按钮(或任何实际的)有这个奇怪的问题,即使我移动(并保存) )约束位置,它只是回到某个数字(在这种情况下是16)。

我在这里做错了什么?是什么导致这个/为什么编辑器重置位置?

http://i.imgur.com/OFndFb7.gifv(GIF - 40s)

版本:

  • 适用于Android的ConstraintLayout - v 1.0.2
  • Android Studio - 2.3.3#AI-162.4069837

布局的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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:layout_editor_absoluteY="25dp"
    tools:layout_editor_absoluteX="0dp">

    <Button
        android:id="@+id/Button_Color_Red"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_marginTop="80dp"
        android:layout_marginStart="16dp"
        android:background="@drawable/btn_red_color_menu"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toLeftOf="parent" />

    <Button
        android:id="@+id/Button_Color_Indigo"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_marginTop="80dp"
        android:layout_marginStart="8dp"
        android:background="@drawable/btn_indigo_color_menu"
        app:layout_constraintLeft_toRightOf="@+id/Button_Color_Yellow"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/Button_Color_Green"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_marginTop="80dp"
        android:layout_marginStart="8dp"
        android:background="@drawable/btn_green_color_menu"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toRightOf="@+id/Button_Color_Indigo"/>

    <Button
        android:id="@+id/Button_Color_Yellow"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_marginTop="80dp"
        android:layout_marginStart="8dp"
        android:background="@drawable/btn_yellow_color_menu"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toRightOf="@+id/Button_Color_Red" />

</android.support.constraint.ConstraintLayout>

btn_x_color_menu的XML:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/Red_Primary"/>
        </shape>
    </item>
</selector>

1 个答案:

答案 0 :(得分:2)

按钮Button_Color_Green上有两个属性存在冲突。

    android:layout_marginLeft="16dp"
    android:layout_marginStart="8dp"

设计师在您移动按钮时会创建android:layout_marginLeft,但android:layout_marginStart保持不变并且存在冲突。这就是移动窗口小部件后边距恢复的原因。

对于从左到右的布局,这两个属性应该相同,但设计师似乎想要更改android:layout_marginLeft,但如果它存在,则要尊重android:layout_marginStart

这可能是ConstraintLayout 1.0.2中的错误。在找到修复程序或更好的解决方案之前,您只需手动将这些属性更改为相同,或者只使用android:layout_marginLeft并稍后再次手动添加android:layout_marginStart。 (Lint应该提醒你这样做。)

现在你知道了这个问题,你可以找到更好的解决方案。

我希望这会有所帮助。