我想找到用于扑打的滴管或实施的一种。有人能帮我吗? 我要贴一张图像并获得拍打区域的颜色。 如此适用于Android的滴管。link
final View targetView = findViewById(R.id.targerView); // Any view from
which you want to pick color
new EyeDropper(targetView, new ColorSelectionListener() {
@Override
public void onColorSelected(@ColorInt int color) {
// color is the color selected when you touch the targetView
(findViewById(R.id.colorSlot)).setBackgroundColor(color);
}
});
我只需要一些东西,只需轻按图像的某个区域并获取该区域的颜色,即可从图像中选择颜色。