我想从我的应用程序中打开网址以在浏览器中显示,但我想这样做,用户不需要单击“返回”转到我的应用程序并可以使用多任务按钮。因此,我的应用程序的活动堆栈独立于浏览器。
有没有办法实现这个目标?
答案 0 :(得分:1)
你可以试试这个!
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.stackoverflow.com"));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
startActivity(intent);
答案 1 :(得分:0)
Try this:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);
That works fine for me.
As for the missing "http://" I'd just do something like this:
if (!url.startsWith("http://") && !url.startsWith("https://"))
url = "http://" + url;