我正在创建一个webview,当网页中有任何输入时,我需要强制使用软键盘。
我尝试了很多我发现的东西,似乎没什么用。
我试过了: 1)
InputMethodManager imm = (InputMethodManager) getApplicationContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
2)
webView.requestFocus(View.FOCUS_DOWN);
webView.setOnTouchListener(new View.OnTouchListener()
{
@Override
public boolean onTouch(View v, MotionEvent event)
{
switch (event.getAction())
{
case MotionEvent.ACTION_DOWN:
case MotionEvent.ACTION_UP:
if (!v.hasFocus())
{
v.requestFocus();
}
break;
}
return false;
}
});
还有其他一些事情。
我设法让它在带有root的三星上工作,但在我的nexus 7中还有root用户我不能。
任何帮助都会被贬低。 THX
答案 0 :(得分:0)
您可以检测是否存在键盘,如果没有显示所需视图/项目的软键盘
示例代码:
if (getResources().getConfiguration().keyboard == 0)
{
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(** view/item **, InputMethodManager.SHOW_IMPLICIT);
}