[android-developers] Re: moving the softkeyboard from place

2010-02-08 Thread flsobral
AFAIK this is possible if you create your own IM, by extending the class InputMethodService and overriding the method "onEvaluateFullscreenMode()" to always return true. I wasn't able to do it myself though, my IM was freezing the application. On Feb 6, 4:06 pm, Mark Murphy wrote: > guich wrote:

[android-developers] Re: moving the softkeyboard from place

2010-02-07 Thread guich
public static void setSIP(int sipOption) { InputMethodManager imm = (InputMethodManager) instance.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); switch (sipOption) { case SIP_HIDE: imm.hideSoftInputFromWindow(instance.getWindowToken(), 0);

Re: [android-developers] Re: moving the softkeyboard from place

2010-02-07 Thread swapnil kamble
Hi, I am also looking for displaying soft keyboard in my layout programmatically (not full screen but always visible.) Do you guys have any idea about this ? On Sat, Feb 6, 2010 at 11:36 PM, Mark Murphy wrote: > guich wrote: > > Thanks. Do you know how to *programatically* force the inputmetho

Re: [android-developers] Re: moving the softkeyboard from place

2010-02-06 Thread Mark Murphy
guich wrote: > Thanks. Do you know how to *programatically* force the inputmethod to > be shown in fullscreen? I don't see an option to do that in InputMethodManager -- you can find out if it is fullscreen, but you can't force it. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://tw

[android-developers] Re: moving the softkeyboard from place

2010-02-06 Thread guich
Thanks. Do you know how to *programatically* force the inputmethod to be shown in fullscreen? regards guich -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To uns