【发布时间】:2018-11-20 12:51:06
【问题描述】:
- 在所有 android 标签上出现未知属性错误。
- 在布局 XML 中,
自动建议未显示所有属性(如
layout_width,layout_height,orientation,方向和所有其他安卓 属性。)
这里我为解决此问题所做的事情:
- 干净的构建和重建
- 已删除.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>
【问题讨论】:
-
给我们更多的背景信息。您正在使用什么布局/元素等。并非所有人都支持所有这些属性
-
Hi tnx for response。我正在使用约束布局,我的 xml 无法识别任何属性。
-
你的 xml 中声明了 android 命名空间吗?
xmlns:android="http://schemas.android.com/apk/res/android" -
你能分享你的Xml布局代码吗,可能命名空间有问题
-
@Benjamin 你能在你的问题中添加这个吗?
标签: android android-studio android-layout android-xml android-layoutparams