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>

実行すると error:error Parsing XML: unbound prefix が返されます。理由がわかりませんが、誰か助けてください??

4

2 に答える 2

2

//リストビューのIDを作成しましたが間違っています

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

以下でこれを試してください

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

カスタムビューの属性を使用するには、ここで名前空間を定義する必要があります。

この質問を見てください。

于 2012-08-16T10:01:09.703 に答える