Android:在某些情况下不会识别风格

时间:2012-03-16 06:28:04

标签: android attributes styleable

我在文件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档中看到此字段。

请帮我解决这个问题。

谢谢:)

1 个答案:

答案 0 :(得分:0)

TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.Dot);
a.getColor....