我在新项目上收到此警告。
"未定义的complexType' java.lang.Object'用作复杂类型扩展的基础。"
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
<android:orientation="vertical">
<android:layout_width="match_parent">
<android:layout_height="match_parent"/>
有架构android-layout-xml.xsd,schemas.android.com.apk.res.android.xsd,schemas.android.com.apk.red.auto.xsd,schemas.android.com.tools.xsd
如果我删除LinearLayout,为什么我只会显示项目的任何想法?
如果我在布局中放置任何内容,它就不会显示任何智能感知。
由于
答案 0 :(得分:0)
那个xml看起来不对,请尝试以下方法。我还添加了一个按钮,以便您可以看到示例内容项。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/MyButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="MyButton" />
</LinearLayout>