布局设计编辑器没有响应。当我将任何东西拖到设计版图中时,它会移到左上角,单击它就会消失。
<TextView
android:id="@+id/textView"
android:textColor="Solid White"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:text="@string/TextView"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
在此处输入代码
<?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">
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:1)
您正在尝试使用无效的颜色值。在线:
android:textColor="Solid White"
Solid White
不是有效的资源名称。您要么需要使用一个十六进制值,例如
android:textColor="#ffffff"
或例如颜色资源
android:textColor="@android:color/white"