Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アニメーションなしで、ソフト キーボードを即座に表示または非表示にする方法はありますか? Cyanogenmod 10 では、フェード アニメーションで表示されます。
このようにしてみてください
InputMethodManager imm = (InputMethodManager)getSystemService(Context. INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0); imm.showSoftInputFromInputMethod(getCurrentFocus().getWindowToken(), 0);