我的申请中有PopupScreen
.. PopupScreen
有一些Field
,例如BasiceditTextfield
和Buttonfield
。
当我点击我的BasiceditTextfield
虚拟键盘在我的9550风暴中自动打开但是当我点击设备菜单键时没有任何反应。我无法隐藏虚拟键盘..
如何隐藏它。
答案 0 :(得分:0)
使用它。 这将启用Menuscreen并禁用设备的后退键。
protected boolean keyDown(int keycode, int status)
{
if(keycode==1769472)
{
return true;
}
else
{
return false;
}
}