I've been trying to set up a long click listener event, but keep getting the following error:
Type mismatch.
Required:Boolean
Found:Unit
I've had no issues with the setOnClickListener
event, but for some reason I'm having zero luck with the setOnLongClickListener
event.
I'm currently trying to display a simple Toast
:
view.setOnLongClickListener{
Toast.makeText(this, "Long click detected", Toast.LENGTH_SHORT).show();
}
I've seen plenty of examples for Java, but I'm yet to find any examples for Kotlin.