Il Wed, 25 Aug 2010 08:59:35 -0700, Stefan Klumpp ha scritto:

> I try to find resources on how to develop a fullscreen IME (one that
> covers the whole screen size) for Android. Someone asked the same
> question here: http://stackoverflow.com/questions/2749964 but no
> response so far.
> 
> Anyone here can help?

I am writing an input IME myself, but I am just starting to learn and 
understand it.

To get fullscreen you must implement, in your InputMethodService, the 
method onEvaluateFullscreenMode():


public class MyKeyboard extends InputMethodService
{
...
 public boolean onEvaluateFullscreenMode()
 {
   return true;
 }
}

Bye.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to