0
  • 在所有 android 标签上出现未知属性错误。
  • 在布局 XML 中,自动建议未显示所有属性(如layout_widthlayout_heightorientation、方向和所有其他 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>
4

2 回答 2

1

我和你一样有同样的问题,我做了你做过的所有事情,这是我的解决方案。也许问题是你在 gradle 中的 targetSDKversion。如果是 28.0.0,您可以将其更改为 27.1.1 并将您的项目与 gradle 文件同步。

这可以帮助您解决它。

于 2018-11-20T13:05:05.760 回答
0

更改您的应用程序模块 build.gradle 文件中的某些内容,例如,注释一行,然后单击 ,然后File单击Sync Project with Gradle Files

于 2018-11-20T13:07:36.827 回答