我有一个 android 应用程序,当应用程序打开时会转到我的公司网站。我总是让它在 android Google chrome 中打开,每次我调用此代码时,都会在 Google chrome 中创建一个新选项卡。有什么方法可以防止创建新标签。用于打开谷歌浏览器的代码如下
Intent i = new Intent("android.intent.action.MAIN");
i.setComponent(ComponentName.unflattenFromString
("com.android.chrome/com.android.chrome.Main"));
i.addCategory("android.intent.category.LAUNCHER");
i.setData(Uri.parse("http://google.com"));
startActivity(i);
谢谢你的回答