Please help me, error at declare-styleable tag: No found tag
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<declare-styleable name=”Gallery1”>
<attr name=”android:galleryItemBackground” />
</declare-styleable>
</resources>
Please help me, error at declare-styleable tag: No found tag
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<declare-styleable name=”Gallery1”>
<attr name=”android:galleryItemBackground” />
</declare-styleable>
</resources>
You are using ” instead of ". Try the following:
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<declare-styleable name="Gallery1">
<attr name="android:galleryItemBackground" />
</declare-styleable>
</resources>