构建一个Android应用程序来打开firefox

时间:2014-05-03 19:55:55

标签: android firefox

我想构建一个可以打开和关闭“android Firefox”的android应用程序用于打开我已经通过以下代码完成

问题: - 如何从我的Android应用程序关闭这个打开的Firefox。


String url = "http://google.com/";
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
     intent.setComponent(new ComponentName("org.mozilla.firefox", "org.mozilla.firefox.App"));
     this.startActivity(intent);

谢谢,

1 个答案:

答案 0 :(得分:0)

我不是100%肯定,但ActivityManager类有一个killBackgroundProcesses方法可以解决你的问题! http://developer.android.com/reference/android/app/ActivityManager.html