1

助けてください。declare-styleable タグでのエラー: タグが見つかりません

<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <declare-styleable name=”Gallery1”&gt;
    <attr name=”android:galleryItemBackground” />
    </declare-styleable>
</resources>
4

1 に答える 1

1

" の代わりに " を使用しています。次のことを試してください。

<?xml version="1.0" encoding="UTF-8"?>
    <resources>
    <declare-styleable name="Gallery1">
    <attr name="android:galleryItemBackground" />
    </declare-styleable>
</resources>
于 2012-10-24T09:12:55.903 に答える