我正在开发一个应用程序,我需要清除浏览器历史记录,例如chrome,Mozilla。 我尝试过以下代码,但这不符合我的要求:
Browser.clearHistory(mContextUtility.getContentResolver());
答案 0 :(得分:0)
ContentResolver cR=getContentResolver();
if(Browser.canClearHistory(cR)){
Browser.clearHistory(cR);
Browser.clearSearches(cR);
}
您尝试使用上述代码可能会有所帮助