我确实创建了一个自定义 ImageView。
我正在尝试在构造函数中获取 ImageView 的背景颜色。
public class CustomImageView extends ImageView{
public CustomImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
}
如何使用 gainStyledAttributes 获取图像视图的背景颜色?