Hi,

I run my android game in landscape mode, there is only one view which
extends SurfaceView. When touch a certain rect area, I want to call
the IME.

InputMethodManager m_inputMethodManager;
m_inputMethodManager =
(InputMethodManager)mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
m_inputMethodManager.showSoftInput(this,
InputMethodManager.SHOW_FORCED);
...
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
        return new MyInputConnection(this, true);    //my InputConnection
class
}

the code works, softKeypad displayed but not fullscreen, I need a
fullscreen IME. When debug, the test method,
m_inputMethodManager.isFullscreenMode() return false, but I can't find
any way to set it true.
How can I call the IME in fullscreen mode?

-- 
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