- 在所有 android 标签上出现未知属性错误。
- 在布局 XML 中,自动建议未显示所有属性(如
layout_width
、layout_height
、orientation
、方向和所有其他 android 属性。)
这里我为解决这个问题所做的事情:
- 清洁构建和重建
- 删除 .idea
- 文件无效的缓存/重新启动..
- 选项打开省电模式。
SDK 是最新的。
我的 xml 布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
tools:context=".MainActivity"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_height="match_parent"
android:layout_width="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>