发布网友 发布时间:2022-10-08 07:17
共1个回答
热心网友 时间:2023-11-07 01:20
您好,很高兴为您解答://根据坐标获取ImageView imageView = ((ImageView)v);Bitmap bitmap = ((BitmapDrawable)imageView.getDrawable()).getBitmap();int pixel = bitmap.getPixel(x,y);//获取颜色int redValue = Color.red(pixel);int blueValue = Color.blue(pixel);int greenValue = Color.green(pixel);转载,仅供参考,如果我的回答没帮助到您,请继续追问。