我正在使用Intellij IDEA 2017.2.2进行Android应用开发。我有以下布局文件:
<?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:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/image_x"
android:id="@+id/text_x"
android:layout_marginStart="24dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBaseline_toBaselineOf="@+id/edit_image_x" />
...
</android.support.constraint.ConstraintLayout>
但是,当我打开“设计”选项卡时,我看到layout_marginStart
的值被忽略,属性面板中有0。当我尝试将边距设置为其他值时,编辑器不会将layout_marginStart
设置为新值,但会创建layout_marginLeft
无效的内容,因为仍有layout_marginStart
。
此问题出现在Intellij IDEA从2016.3升级到2017.2.2之后。
这是一个错误吗?我该如何解决?我不想从代码中删除所有layout_marginStart
并将其替换为layout_marginLeft
。还有其他解决方案吗?