博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
安卓手机软键盘操作
阅读量:6495 次
发布时间:2019-06-24

本文共 674 字,大约阅读时间需要 2 分钟。

hot3.png

inputMethodManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE)

隐藏活显示

inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
inputMethodManager.toggleSoftInput(0, InputMethodManager.HIDE_IMPLICIT_ONLY);

隐藏活显示,测试的时候显示的无效,测试机子华为荣耀

inputMethodManager.showSoftInput(ibEdit, InputMethodManager.SHOW_FORCED);
inputMethodManager.hideSoftInputFromWindow(ibEdit.getWindowToken(), 0);

隐藏

inputMethodManager.hideSoftInputFromWindow(getActivity().getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

获取打开隐藏状态,测试一直都是true,测试机子华为荣耀

inputMethodManager.isActive()

转载于:https://my.oschina.net/yolinfeng/blog/379669

你可能感兴趣的文章
spring-data-elasticsearch 概述及入门(二)
查看>>
Solr启动和结束命令
查看>>
1.12 xshell密钥认证
查看>>
3.2 用户组管理
查看>>
awk
查看>>
AliOS Things SMP系统及其在esp32上实现示例
查看>>
VMware虚拟机出现“需要整合虚拟机磁盘”的解决方法
查看>>
ibatis 动态查询
查看>>
汇编语言之实验一
查看>>
09、Modules - Directory根据目录加载模块文件
查看>>
观影识人生
查看>>
The Little Prince-12/12
查看>>
git 调用 Beyond Compare
查看>>
ECMAScript 5 —— Function 类型 (一)
查看>>
SQL基础-->层次化查询(START BY ... CONNECT BY PRIOR)[转]
查看>>
android实现图片识别的几种方法
查看>>
bzoj1030[JSOI2007]文本生成器
查看>>
mvc学习地址
查看>>
masonry 基本用法
查看>>
使用openssl创建自签名证书及部署到IIS教程
查看>>