我正在尝试从键盘加载一个URL,这样当我点击" DONE" URL在WebView中加载。我尝试使用KeyEvent
,但它不起作用。我该怎么做?
答案 0 :(得分:0)
假设您在edittext中输入内容,则可以使用以下内容执行您想要的操作:
yourEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
yourWebview.loadUrl(yourEditText.getText());
return true;
}
return false;
}
});
您可以根据键盘所说的内容采取不同的操作,例如" next"或者"完成",只需检查EditorInfo中的其他操作。
如果您需要任何其他帮助,请与我们联系。