1

我正在创建一个使用位于 res 文件夹下的 schedule_layout.xml 文件的 android 应用程序,但我收到此错误,“Android 缺少 Android 命名空间前缀”。这是什么意思?我该如何解决?

<?xml version="1.0" encoding="utf-8"?>
<ListView
    android:id="@+id/schedule"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
</ListView>
4

2 回答 2

2

将以下属性添加到您的列表视图:

"xmlns:android="http://schemas.android.com/apk/res/android"

这就像一个命名空间声明

于 2013-11-08T18:38:14.927 回答
1

使用以下

<?xml version="1.0" encoding="utf-8"?>
<ListView
    xmlns:android="http://schemas.android.com/apk/res/android" //missing
    android:id="@+id/schedule"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
</ListView>

还要检查这个

为什么这行 xmlns:android="http://schemas.android.com/apk/res/android" 必须是布局 xml 文件中的第一行?

于 2013-11-08T18:38:37.983 回答