我开始注意到我最近在处理布局文件时,Android Studio出现了一些奇怪的故障。它首先随机破坏AS GUI,然后通过重新启动解决了这一问题。
但是从今天开始,每次我尝试打开设计视图时,它都会中断。
下面的图片将显示我的意思:
如您所见,UI完全坏了,我看不到大多数按钮,有时甚至没有显示布局预览。这是一个已知问题吗?
我正在Windows 10 x64上运行稳定的Android Studio 3.2.1。
我试图:
不幸的是,这些都不起作用。
为了完整起见,这是我使用的布局:
<?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="wrap_content">
<ImageView
android:id="@+id/backdrop"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:importantForAccessibility="no"
android:src="@color/mds_indigo_400"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
<android.support.v7.widget.AppCompatTextView
android:id="@+id/letter"
android:layout_width="0dp"
android:layout_height="0dp"
android:gravity="center"
app:autoSizeTextType="uniform"
app:autoSizeMinTextSize="14sp"
app:autoSizeMaxTextSize="26sp"
android:maxLines="1"
android:textColor="@color/secondaryLightText"
app:layout_constraintTop_toTopOf="@id/backdrop"
app:layout_constraintBottom_toBottomOf="@id/backdrop"
app:layout_constraintStart_toStartOf="@id/backdrop"
app:layout_constraintEnd_toEndOf="@id/backdrop"
tools:text="M" />
<TextView
style="@style/TextAppearance.AppCompat.Large"
android:id="@+id/name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:textColor="@color/colorAccentDark"
app:layout_constraintStart_toEndOf="@id/backdrop"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/backdrop"
app:layout_constraintBottom_toBottomOf="@id/backdrop"
app:layout_constrainedHeight="true"
tools:text="Marketing"/>
</android.support.constraint.ConstraintLayout>