3

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>
​&lt;declare-styleable name="Gallery1" >
​​​​&lt;attr name="android:galleryItemBackground" />
​​​&lt;/declare-styleable>
</resources>

問題は attrs.xml にあると思いますが、何が起こっているのかわかりません。このため、 R.styleable も機能しません。助けてください。前もって感謝します

4

1 に答える 1

5

コピー/貼り付けの方法により、attrs.xml の各行の前にいくつかの文字があると思います。

各行の先頭にテキスト カーソルを置き、削除して前の行に戻ることで、コードの再フォーマットを試みることはできますか?

于 2012-04-24T14:38:39.107 に答える