1

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>
Hien Phan
  • 11
  • 3

1 Answers1

1

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>
azertiti
  • 3,150
  • 17
  • 19