软键盘在Android中使用的还是挺多的,总结一些用法
隐藏软键盘
hideSoftInputFromWindow(windowToken, flags)
- windowToken:view.getWindowToken(), view实际上可以是布局中的任意一个view,也可以使用Activity的顶层DecorView的getWindowToken()来隐藏当前Activity中显示的软键盘
- flags:
- HIDE_IMPLICIT_ONLY:只有当显示软键盘时指定的flag为SHOW_IMPLICIT时,软键盘才会隐藏
- HIDE_NOT_ALWAYS:当显示软键盘时指定的flag为SHOW_FORCED时,软键盘不会隐藏
public static void hideSoftInput(Context context, View view) { InputMethodManager im = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); if (null != im && im.isActive() && null != view) { im.hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); } }
显示软键盘
showSoftInput(view, flags)
- view: 必须是EditText, 或者EditText的子类,必须是可以获取焦点的, 且已经获取到焦点,必须是可见的, 必须已经完成加载,如果还未绘制完成,则showSoftInput()方法不起作用
- flags:
- SHOW_IMPLICIT:本次显示软键盘的请求不是来自用户的直接请求,而是隐式的请求
- SHOW_FORCED:这个参数的取值对软键盘的显示没有任何影响,无论取哪一个值软键盘都能够正常显示。实际上这个参数影响的并不是软键盘的显示,而是软键盘的隐藏
public static void showSoftInput(Context context, View view) { InputMethodManager im = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); if (null != im && null != view) { im.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT); } }
设定软键盘的模式
public static void setSoftInputMode(Activity activity, int mode) { Window window = activity.getWindow(); if (null != window) { window.setSoftInputMode(mode); } }
软键盘弹起关闭监听
mEtSearch.getViewTreeObserver().addOnGlobalLayoutListener(() -> { Rect r = new Rect(); mEtSearch.getWindowVisibleDisplayFrame(r); int screenHeight = mEtSearch.getRootView().getHeight(); int heightDifference = screenHeight - (r.bottom); isShowSoftKeyboard = heightDifference > 200; });
猜你喜欢
网友评论
- 搜索
- 最新文章
- 热门文章