1

我在 file 中添加了一些属性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 文件中看不到该字段。

请帮我解决这个问题。

谢谢 :)

4

1 回答 1

0
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.Dot);
a.getColor....
于 2012-03-16T07:13:28.817 回答