我在文件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档中看到此字段。
请帮我解决这个问题。
谢谢:)
答案 0 :(得分:0)
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.Dot);
a.getColor....