抖动图像颜色选择器

时间:2020-02-20 13:18:56

标签: flutter dart

我想找到用于扑打的滴管或实施的一种。有人能帮我吗? 我要贴一张图像并获得拍打区域的颜色。 如此适用于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);
  }
  });

我只需要一些东西,只需轻按图像的某个区域并获取该区域的颜色,即可从图像中选择颜色。

1 个答案:

答案 0 :(得分:0)

我终于找到了自己,这里是链接image colorpicker widget 这是youtube预览preview 谢谢你。