我在activity_main.xml 中的RelativeLayout 下添加了一个列表视图,以为主要活动创建一个简单的列表视图(如果我使用了错误的术语,请见谅。我对android 开发非常陌生)。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listview"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
这在一段时间内非常有效。
我注意到我做了什么,因为现在我在行上得到一个红色错误圆圈我得到的
android:id="@+id/listview"
错误是:Unexpected namespace prefix "xmlns" found for tag ListView
Eclipse 不会让我编译该项目,即使它只是在工作。
提前致谢!