首页 > 解决方案 > 未知属性android:layout_width、layout_height、id、gravity、layout_gravity等xml中的属性

问题描述

这里我为解决这个问题所做的事情:

  • 清洁构建和重建
  • 删除 .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>

标签: androidandroid-studioandroid-layoutandroid-xmlandroid-layoutparams

解决方案


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

这可以帮助您解决它。


推荐阅读