标签: android android-intent
当我使用Intent.ACTION_VIEW打开指定的URL时:
String url = "http://www.example.com"; Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url)); startActivity(i);
我可以禁用已启动浏览器的历史记录列表吗?