美文网首页
键盘工具类

键盘工具类

作者: 微尘_8957 | 来源:发表于2018-12-27 15:39 被阅读0次

    public class KeyboardUtils {

        /**

        * 显示键盘

        * @param view

        */

        public static voiddisplaySoft(View view) {

            InputMethodManager imm = (InputMethodManager)view.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);

    imm.showSoftInput(view, InputMethodManager.SHOW_FORCED);

        }

        /**

        * 隐藏键盘

        */

        public static voidhideSoft(View view) {

            InputMethodManager imm = (InputMethodManager)view.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);

    imm.hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

        }

    }

    相关文章

      网友评论

          本文标题:键盘工具类

          本文链接:https://www.haomeiwen.com/subject/htarlqtx.html