码迷,mamicode.com
首页 > 其他好文 > 详细

输入法控制

时间:2015-08-26 01:58:07      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

切换输入法状态

功能:切换输入法状态,即当输入法打开时,关闭它;当输入法关闭时,打开它。

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);//得到InputMethodManager的实例 
        if (imm.isActive()) { //如果输入法开启,则切换状态使关闭
            imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, InputMethodManager.HIDE_NOT_ALWAYS); 
        } else{//如果输入法关闭,也切换输入法使开启
            imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, InputMethodManager.HIDE_NOT_ALWAYS); 
        }

版权声明:本文为博主原创文章,未经博主允许不得转载。

输入法控制

标签:

原文地址:http://blog.csdn.net/qq_16912257/article/details/47989103

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!