I have a text view (and possibly 1 or 2 Spinners after it) and a Button. When a user presses the enter key (soft or hard keyboard), I want to Click the Search button, which is next.
Is it only possible to do this by overriding the onKey event of the TextView and when Enter is pressed, performClick() the Button?
I can’t find much information from Google, but i could be searching for the wrong term.
Cheers,
D
yes this is only possible by overriding the onKey event.