我是 IntelliJ 开发的新手,我正在使用 Android 插件进行开发。
但是,我无法让 XML 验证或自动完成功能正常工作。
以下是我的 XML 的片段:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/competitionName"
/>
验证告诉我所有的 android 属性都是无效的。同样,如果我输入一个新属性,它不会给我任何建议。
我已经查看了设置,但我没有看到我缺少什么。
有人可以在这里帮忙吗?
谢谢