发送一个意图到浏览器打开特定的URL
这个问题在这里已经有了答案:
要打开网址/网站,请执行以下操作:
String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
这里是Intent.ACTION_VIEW
的文档。
来源:从应用程序中打开Android Web浏览器中的URL
短版
Intent i = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://almondmendoza.com/android-applications/"));
startActivity(i);
应该也能工作...
最短的版本。
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com")));
链接地址: http://www.djcxy.com/p/41957.html
上一篇: Sending an Intent to browser to open specific URL
下一篇: p4merge error [GIT]