Androidに関する本「Beginning Android Application」をフォローしています。ビューに画像を表示するアプリケーションを見つけようとしています。残念ながら、次のエラーのため、アプリケーションを実行できませんでした:
[2012-04-24 19:37:33 - Gallery] F:\eclipse workspace\Gallery\res\values
\attrs.xml:2:error: Found text "
[2012-04-24 19:37:33 - Gallery] ​​​​ " where item tag is expected
便宜上、ここにコードを示します。main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Bilai"
/>
<Gallery
android:id="@+id/gallery1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ImageView
android:id="@+id/image1"
android:layout_width="320px"
android:layout_height="250px"
android:scaleType="fitXY"
/>
</LinearLayout>
このアプリケーションには別の xml ファイルが必要です。res/values の下に attrs.xml という名前が付けられます。attrs.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="Gallery1" >
<attr name="android:galleryItemBackground" />
</declare-styleable>
</resources>
問題は attrs.xml にあると思いますが、何が起こっているのかわかりません。このため、 R.styleable も機能しません。助けてください。前もって感謝します