如何从android中的应用程序打开chrome浏览器的历史窗口?

时间:2015-02-27 07:41:39

标签: android google-chrome

我正在尝试从我的应用程序中打开chrome历史记录窗口。请告诉我怎么做?

1 个答案:

答案 0 :(得分:1)

 Intent i = new Intent("android.intent.action.VIEW");
        i.setPackage(PKG_CHROME);
        i.setData(Uri.parse("about://history"));
        i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        paramContext.startActivity(i);
相关问题