- すべての 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>