Disabling Android Keyboard's 'Go' Button for WebView Text Entry

牧云@^-^@ 提交于 2019-11-30 04:45:46

问题


I am developing an Android application that uses a WebView pointed at a jQueryMobile-based site. Normally, disabling the 'Go' button on the soft keyboard is as simple as adding android:imeOptions="actionDone" to the control's XML tag. In the case of WebViews however, this doesn't do the trick.

How can I disable the 'Go' button from automatically doing a form submission, or alternatively to simply replace it with the 'Done' button, like android:imeOptions="actionDone" would for an EditText?


回答1:


You may stop submitting form by putting the onsubmit event of the form.




回答2:


Here's a more detailed answer that uses the method alluded to by Vikas.

Since the problem is that your form is submitting, you can add an onSubmit attribute to your form element that runs JavaScript to determine if your form should be submitted.

Below is the form that you don't want to submit:

<form name="myForm" onSubmit="return doNothing()">
    <!-- Elements included in the form -->
</form>

And include this script that returns false which keeps your form from submitting.

<script>
function doNothing()
{
    return false;
}
</script>

Now, when you press Go after entering text into your text input field, the keyboard will simply collapse without submitting the form.

This could also be used to check for errors in your form. See the webpage below: http://www.htmlcodetutorial.com/forms/_FORM_onSubmit.html



来源:https://stackoverflow.com/questions/5249934/disabling-android-keyboards-go-button-for-webview-text-entry

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!