本文介绍了显示软键盘时,该设备为横向模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这code似乎没有在风景模式下工作:

有没有什么解决方案,以显示软键盘在横向模式?

解决方案

您需要使用节目被迫

  InputMethodManager IMM;
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,InputMethodManager.HIDE_IMPLICIT_ONLY);
imm.showSoftInput(this.editText,InputMethodManager.SHOW_FORCED);
 

This code seems not to work in Landscape mode:

Is there any solution to show the soft keyboard in Landscape mode ?

解决方案

You need to use show forced

InputMethodManager imm;
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,InputMethodManager.HIDE_IMPLICIT_ONLY);
imm.showSoftInput(this.editText,InputMethodManager.SHOW_FORCED);

这篇关于显示软键盘时,该设备为横向模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 20:10