0,
defStyleRes: Int = 0
) : View(context, attrs, defStyleAttr, defStyleRes) {
//...
override fun onTouchEvent(event: MotionEvent): Boolean {
when (event.action) {
MotionEvent.ACTION_DOWN -> {
setBackgroundColor(Color.BLUE)
}
MotionEvent.ACTION_UP -> {
setBackgroundColor(Color.RED)
}
}
invalidate()
return true
}
}
customView. setOnClickListener - не пашет
Обсуждают сегодня