0

我只是导出一个包以在 xml 文件中为我的项目制作轮播:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >


    <ListView 
        android:id="@+android:id/list1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"></ListView>

   <LinearLayout
        android:layout_weight="1"
        android:padding="5dip"
        android:gravity="top"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" 
        >
        <com.me.controls.Carousel
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" 
                android:id="@+id/carousel"  
                pj:UseReflection="true"
                pj:Items="@array/entries" 
                pj:SelectedItem="0"
                android:animationDuration="200"
            />  
</LinearLayout>             
</LinearLayout>

运行时给出错误:错误解析 XML:未绑定前缀。但我不知道原因请任何人帮忙??

4

2 回答 2

2

//你为listview创建的id是错误的

android:id="@+android:id/list1"

试试下面这个

android:id="@android:id/list"
于 2012-08-16T09:59:59.907 回答
1

您需要在此处定义名称空间以使用自定义视图的属性。

看看这个问题

于 2012-08-16T10:01:09.703 回答