在Design
和Text
标签之间切换标签时,Android Studio会不断更改我的约束。
在更改为Design
标签之前:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">....
切换到Design
并返回Text
后:
<LinearLayout
android:layout_width="395dp"
android:layout_height="587dp"
android:orientation="horizontal"
tools:layout_editor_absoluteY="8dp"
tools:layout_editor_absoluteX="8dp">...
必须是我缺少的按钮。我该如何防止它发生?
答案 0 :(得分:0)
这似乎是Android Studio中的一个错误。
一旦我升级到3.0.1
,问题似乎就会得到解决。