[android-developers] Re: Completely disable Soft Keyboard from EditText

2011-02-12 Thread zenperttu
ack that only > let > you enter the letters in your rack, plus a backspace and DONE key. > > On Feb 6, 2:26 am, Dianne Hackborn wrote: > > > Can I first ask, what are you trying to accomplish?  What is the purpose of > > having an editable text view if the user can&#

[android-developers] Re: Completely disable Soft Keyboard from EditText

2011-02-05 Thread zenperttu
capture touch/select > events? > Making it non-editable may prevent the keyboard from popping up. > > - Brill Pappin > > On Feb 1, 1:29 pm, zenperttu wrote: > > > Hi! > > > I would like a way to turn off showing the current soft keyboard for > > an EditText.

[android-developers] Making the soft keyboard NOT to be shown for a View

2011-02-04 Thread zenperttu
I have three EditText boxes in an activity, for two of which normal input methods (hard keys, default soft keyboard) are ok. But for one of the EditText boxes I want to send soft input only from a custom keyboard view. So in effect I wanted the default soft keyboard never to be shown for this EditT

[android-developers] Completely disable Soft Keyboard from EditText

2011-02-03 Thread zenperttu
Hi! I would like a way to turn off showing the current soft keyboard for an EditText. I have a custom View that provides the soft input needed for an EditText, so on every occasion (on click, on focus change, on touch...) when by default the soft keyboard would be shown, I want it NOT to be shown.