android隐藏输入法的一些尝试,最后一个可行

一、背景:

基于android开发自己的输入法app,用户需要手动收起输入法

二、准备工作:

定义类 public class CustIMS extends InputMethodService {}  和 xml声明

三、尝试验证:

1、CustIMS.hideWindow();

结论:这个在平板有效,在手机验证无效

2、CustIMS.sendDownUpKeyEvents(KeyEvent.KEYCODE_BACK)

结论:平板和手机都可以用,但是有一个问题,就是会触发Activity的onBackPressed方法

3、KeyboardUtils.hideSoftInput(CustIMS.getWindow().getWindow());

这个build.gradle需要增加依赖  

api "com.blankj:utilcodex:1.31.1"

结论:没有效果

4、KeyboardUtils.hideSoftInput(view)

结论:view就是点击的view对象,没有效果

5、KeyboardUtils.hideSoftInput(CustIMS.getWindow().getWindow());

结论:没有效果

6、KeyboardUtils.hideSoftInput(CustIMS.getWindow().getOwnerActivity());

结论:没有效果

7、KeyboardUtils.clickBlankArea2HideSoftInput()

结论:看了实现逻辑,是通过判断那些区域的view可以展示,其他区域则隐藏,依然用到getCurrentFocus()和KeyboardUtils.hideSoftInput(this),符合自己开发的页面,不符合当前是输入法的情况使用。

8、((InputMethodManager)CustIMS.getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(CustIMS.getWindow().getOwnerActivity().getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

结论:没有效果,CustIMS.getWindow().getOwnerActivity().getCurrentFocus() 空指针

9、try {

Class cls = EditText.class;

Method setSoftInputShownOnFocus;

setSoftInputShownOnFocus = cls.getMethod("setSoftInputShownOnFocus", boolean.class);

setSoftInputShownOnFocus.setAccessible(true);

setSoftInputShownOnFocus.invoke(editText, false);

} catch (Exception e) {

e.printStackTrace();

}

结论:需要先获取editText对象,和第7个一样,不符合场景

10、CustIMS.getWindow().cancel();

结论:可以关闭,但是关闭后,再次点击焦点无法在此调起,只有切换焦点才可以

11、CustIMS.requestHideSelf(InputMethodManager.HIDE_IMPLICIT_ONLY);

结论:没有效果

12、CustIMS.requestHideSelf(InputMethodManager.HIDE_NOT_ALWAYS);

结论:手机和平板都可以

你可能感兴趣的:(android)