2013年9月6日金曜日

How to open select input method option menu programmatically on Android

Here's the snippets for Android to open the select input method option menu programmatically.

InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
if (mgr != null) {
    mgr.showInputMethodPicker();
}



0 件のコメント:

コメントを投稿