gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:50:31 28 4
gpt4 key购买 nike

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

最佳答案

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

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

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

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 方法在任何情况下都会返回一个颜色值。

关于android - 如何可靠地从 AttributeSet 中获取颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13512850/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com