My app has an EditText that, when I click in it to enter text in the Emulator, brings up a soft keyboard. I don't want this confounded thing to begin with, but then, like the visiting loud-mouthed uncle in the plaid pants, doesn't want to go away, and it is blocking the button beneath it. How do I either (a) prorgrammatically prevent the soft keyboard from appearing or at least (b) evict it, albeit manually, when it pops up?
|
feedback
|
|
Provided that the user is not supposed to input text, but is able to click the
This will make it look like an Since you want the user to be able to write stuff in the
| ||||
|
feedback
|
|
Just set android:editable="false" for your EditText | |||
feedback
|
|
The answer is to set the focus on an other View like a Button, TextView or similar:
| |||
feedback
|
|
I think what you really need is take a look at You can specify the screen to pan/ resize to show the buttons that the input method might be blocking. Not allowing the keyboard to show will make the user unable to enter text at all! | |||
|
feedback
|
EditText? – Kasper Moerch Dec 16 '11 at 12:21