9

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

4

1 回答 1

27

假设您已经像这样定义了自定义颜色属性:

<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方法都会返回一个颜色值。

于 2012-11-22T12:58:52.410 回答