Reputation:
I am creating InputMethodManager
to show soft keyboard for a webview.
InputMethodManager manager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
manager.showSoftInput(webview, InputMethodManager.SHOW_IMPLICIT);
Is there a way to disable auto completion for the soft keyboard?
Upvotes: 1
Views: 1047