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。我该怎么办?
答案 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
}
})