获取ImageView的背景颜色

时间:2012-02-18 07:43:36

标签: android colors imageview

我有一个普通的ImageView对象colorSquare

通过调用直接设置对象的颜色。

colorSquare.setBackgroundColor(color);

但是我如何反过来,即检索ImageView背景的颜色?

2 个答案:

答案 0 :(得分:14)

你能做的是

从ImageView获取ColorDrawable。

ColorDrawable drawable = (ColorDrawable) colorSquare.getBackground();

现在

drawable.getColor()

会给你颜色。

这只有在你设置了颜色时才有效,否则你会得到ClassCastException

答案 1 :(得分:-1)

private int colorfindcolor(View v, int x, int y) {


    int offset = 1; // 3x3 Matrix
    int pixelsNumber = 0;

    int xImage = 0;
    int yImage = 0;


    Bitmap imageBitmap = BitmapFactory.decodeResource(context.getResources(),
            R.drawable.palette_color);
    xImage = (int) (x * ((double) imageBitmap.getWidth() / (double) paletteImg
            .getWidth()));
    yImage = (int) (y * ((double) imageBitmap.getHeight() / (double) paletteImg
            .getHeight()));

    for (int i = xImage - offset; i <= xImage + offset; i++) {
        for (int j = yImage - offset; j <= yImage + offset; j++) {
            try {

                color = imageBitmap.getPixel(i, j);

                pixelsNumber += 1;
            } catch (Exception e) {
                // Log.w(TAG, "Error picking color!");
            }
        }
    }

    return color;

}

其中x,y是imageview触摸事件的event.getX(),event.getX()