[android-developers] Re: How to enforce the soft keyboard

2009-05-12 Thread Teo
Is there a way to make it disappear from code? On May 12, 4:18 am, Dianne Hackborn hack...@android.com wrote: The user always has the option to dismiss it. On Sun, May 10, 2009 at 10:48 AM, Joerg Pleumann joerg.pleum...@gmail.comwrote: Hello, is there a way to enforce the soft

[android-developers] Re: How to enforce the soft keyboard

2009-05-12 Thread Romain Guy
InputMethodManager inputManager = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE); Then call one of the hide*() methods on inputManager. On Tue, May 12, 2009 at 10:18 AM, Teo teomina...@gmail.com wrote: Is there a way to make it disappear from code? On May

[android-developers] Re: How to enforce the soft keyboard

2009-05-12 Thread Joerg Pleumann
Hi Dianne, thanks for the response. I'm more interested in having it appear automatically, though. Maybe I am doing something wrong, but it seems that stateAlwaysVisible doesn't have any effect. I still have to tap into an entry field. Cheers, Joerg On 12 Mai, 03:18, Dianne Hackborn

[android-developers] Re: How to enforce the soft keyboard

2009-05-12 Thread Dianne Hackborn
Contacts uses stateVisible for the editor activity and this works fine. On Tue, May 12, 2009 at 11:17 AM, Joerg Pleumann joerg.pleum...@gmail.comwrote: Hi Dianne, thanks for the response. I'm more interested in having it appear automatically, though. Maybe I am doing something wrong, but it

[android-developers] Re: How to enforce the soft keyboard

2009-05-11 Thread Dianne Hackborn
The user always has the option to dismiss it. On Sun, May 10, 2009 at 10:48 AM, Joerg Pleumann joerg.pleum...@gmail.comwrote: Hello, is there a way to enforce the soft keyboard throughout the lifetime of an Activity? I tried setting stateAlwaysVisible in the Manifest.xml as well as the