本文介绍了如何禁用拨号盘软键盘在android系统?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我的工作片剂mode.I电话应用需要禁用软键盘中文我们点击编辑text.Can任何一个请帮助我..
先谢谢了。

I am working on the Phone app in tablet mode.I want to disable the soft keypad wen we click on the edit text.Can any one please help me..Thanks in advance.

推荐答案

使用此为隐藏

InputMethodManager imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(edit.getWindowToken(), 0);

使用这种作秀

    InputMethodManager imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);

这篇关于如何禁用拨号盘软键盘在android系统?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-07 22:28