hpAndro
hpAndro

Reputation: 178

Clearing the search history from a webview

enter image description here

In my implementation, I want to remove this search history from the google page. I had tried with cache clear, clear form data, clearHistory but not succeed. Please help me with this.

Upvotes: 1

Views: 939

Answers (1)

MDB
MDB

Reputation: 131

That is not the history of your Webview or browser, it is being saved on your particular Google account, for that, I guess you have to delete Google Search History from your Google account.

How to delete all google search history

Or try clearing all data from webView using WebStorage.getInstance().deleteAllData();

Upvotes: 2

Related Questions