我有一个minSdk = 15的应用。
我正在尝试迁移到ConstraintLayout。
差不多好。但是当我从布局编辑器更改margin_left的值时, layout_marginLeft / Right attrubute将被删除。
前
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="24dp"
android:layout_marginStart="24dp" // <- I will set to 16dp from layout editor
/>
后
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
// <- layout_marginLeft is removed...
android:layout_marginStart="16dp" // <- it is ok
/>
如果我从布局编辑器更改marginLeft,
layout_marginLeft / Right 和 layout_marginStart / End 已更改。
成功更改 layout_margineStart / End ,但 layout_marginLeft / Right 已删除。
或
值被拒绝, layout_marginLeft / Right 被删除。