I'm trying to figure out how to build a keyboard b...
# android
r
I'm trying to figure out how to build a keyboard backspace like button. So short click for one symbol, hold for x ms for multiple remove symbol actions. Any ideas what kind of a listener should be used?
stackoverflow 1
y
I don't really think this is a Kotlin question, but I'd use a touch listener on the view and focus on the
ACTION_DOWN
and
ACTION_UP
events.
👍 1
h
Can you be more specific