Я добавил некоторые атрибуты в файл attr.xml
. Вот его код:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="gallery_view">
<attr name="android:galleryItemBackground"/>
</declare-styleable>
<declare-styleable name="Dot">
<attr name="color" format="color"/>
<attr name="radius" format="dimension"/>
</declare-styleable>
</resources>
Но я не понимаю, почему при использовании:
R.styleable.gallery_view_android_galleryItemBackground
: без ошибок.
R.styleable.Dot_color
заметит ошибку, потому что не может видеть это поле в файле R.
Пожалуйста, помогите мне в этом.
Спасибо:)