如何在Kotlin中使用此库?

时间:2018-07-25 13:58:31

标签: android

colorPicker.setColorSelectionListener(new SimpleColorSelectionListener() {
  @Override
  public void onColorSelected(int color) {
    // Do whatever you want with the color
    imageView.getBackground().setColorFilter(color, PorterDuff.Mode.MULTIPLY);
  }
});

我正在尝试使用Java中的颜色选择器库。我无法将代码转换成Kotlin。我该怎么办?

2 个答案:

答案 0 :(得分:0)

可能看起来像

colorPicker.seColorSelectionListener(object : SimpleColorSelectionListener() {

  override fun onColorSelected(color:Int) {
     imageView.getBackground().setColorFilter(color, PorterDuff.Mode.MULTIPLY);
  }

});

答案 1 :(得分:0)

您只需复制粘贴代码,Android Studio就会进行转换。为了方便起见,您可以像这样使用它。

colorPicker.setColorSelectionListener(object : SimpleColorSelectionListener() {
        override fun onColorSelected(color: Int) {
       // Do whatever you want with the color

        }
    })