当前位置 : 主页 > 编程语言 > c++ >

Android 软键盘Toggle

来源:互联网 收集:自由互联 发布时间:2021-07-03
Android 软键盘Toggle if(getCurrentFocus()!=null) { ((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(getCurrentFocus() .getWindowToken(),InputMethodManager.HIDE_NOT_ALWAYS); }
Android 软键盘Toggle
if(getCurrentFocus()!=null)
    {
        ((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE))
                .hideSoftInputFromWindow(getCurrentFocus()
                .getWindowToken(),InputMethodManager.HIDE_NOT_ALWAYS); 
    }
网友评论