Getting the background color of an ImageView

后端 未结 2 610
野趣味
野趣味 2020-12-18 03:01

I have a plain ImageView object colorSquare.

It is straightforward to set the color of the object by calling.

colorSquare.s         


        
相关标签:
2条回答
  • 2020-12-18 03:34

    What u can do is

    get ColorDrawable from ImageView.

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

    now

    drawable.getColor()

    will give u the Color.

    This will work only if u have set the Color or else u will get ClassCastException

    0 讨论(0)
  • 2020-12-18 04:00
    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;
    
    }
    

    Where x,y are event.getX(),event.getX() of imageview touch event

    0 讨论(0)
提交回复
热议问题