如何从AttributeSet中可靠地获取颜色?

时间:2012-11-22 12:34:00

标签: android xml parsing colors

我想创建一个自定义类,当在Android XML文件中布局时,该类将颜色作为其属性之一。但是,颜色可以是资源,也可以是多种直接颜色规范之一(例如十六进制值)。是否有一种使用AttributeSet检索颜色的简单首选方法,因为表示颜色的整数可以引用资源值或ARGB值?

1 个答案:

答案 0 :(得分:23)

假设您已经定义了自定义颜色属性,如下所示:

<declare-styleable name="color_view">
    <attr name="my_color" format="color" />
</declare-styleable>

然后在视图的构造函数中,您可以检索这样的颜色:

public ColorView(Context context, AttributeSet attrs) {
   super(context, attrs);

   TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.color_view);
   try {
       int color = a.getColor(R.styleable.color_view_my_color, 0);
       setBackgroundColor(color);
   } finally {
       a.recycle();
   }
}

您实际上不必担心如何填充颜色属性,就像这样

<com.test.ColorView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:my_color="#F00"
    />

或者像这样:

<com.test.ColorView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:my_color="@color/red"
    />

getColor方法在任何情况下都会返回颜色值。