如何在所有api级别上实用地清除android中的浏览器历史记录

时间:2016-10-21 11:42:16

标签: android database caching browser android-contentprovider

我正在开发一个应用程序,我需要清除浏览器历史记录,例如chrome,Mozilla。 我尝试过以下代码,但这不符合我的要求:

Browser.clearHistory(mContextUtility.getContentResolver());

1 个答案:

答案 0 :(得分:0)

ContentResolver cR=getContentResolver();
if(Browser.canClearHistory(cR)){
   Browser.clearHistory(cR);
   Browser.clearSearches(cR);
}

您尝试使用上述代码可能会有所帮助