未知属性 android:layout_width、layout_height、id、gravity、layout_gravity 和 xml 中的其他属性
Unknown attribute android:layout_width, layout_height, id, gravity, layout_gravity and other attribute in xml
- 在所有 android 标签上出现未知属性错误。
- 在布局中 XML,
自动建议未显示所有属性(如
layout_width
,
layout_height
、orientation
、方向和所有其他 android
属性。)
此处我为解决此问题所做的事情:
- Clean Build & Rebuild
- Deleted .idea
- file Invalidated Caches/Restart..
- option Turn On Power Save Mode.
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>
我遇到了和你一样的问题,我做了你做过的所有事情,这是我的解决方案。
也许问题是 gradle 中的 targetSDKversion。如果它是 28.0.0,您可以将其更改为 27.1.1 并将您的项目与 gradle 个文件同步。
这可以帮你解决。
在你的应用程序模块 build.gradle 文件中更改一些内容,例如注释一行,然后
单击 File
,然后单击 Sync Project with Gradle Files
。
- 在所有 android 标签上出现未知属性错误。
- 在布局中 XML,
自动建议未显示所有属性(如
layout_width
,layout_height
、orientation
、方向和所有其他 android 属性。)
此处我为解决此问题所做的事情:
- Clean Build & Rebuild
- Deleted .idea
- file Invalidated Caches/Restart..
- option Turn On Power Save Mode.
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>
我遇到了和你一样的问题,我做了你做过的所有事情,这是我的解决方案。 也许问题是 gradle 中的 targetSDKversion。如果它是 28.0.0,您可以将其更改为 27.1.1 并将您的项目与 gradle 个文件同步。
这可以帮你解决。
在你的应用程序模块 build.gradle 文件中更改一些内容,例如注释一行,然后
单击 File
,然后单击 Sync Project with Gradle Files
。