user2576401
user2576401

Reputation:

Android WebView disable suggestions for input

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

Answers (1)

Rohit5k2
Rohit5k2

Reputation: 18112

Try webview.getSettings().setSaveFormData(false);

Upvotes: 1

Related Questions