我需要知道如何创建一个按钮来打开orroids Web浏览器并导航到特定的URL。我正在使用eclipse并且已经知道如何制作按钮并单击监听器。 谢谢你的帮助。
答案 0 :(得分:2)
只需将此代码添加到onClick():
// Launch a browser
Uri uri = Uri.parse("http://www.yahoo.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
答案 1 :(得分:1)
Intent websiteIntent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("http://www.android.com");
websiteIntent.setData(uri);
startActivity(websiteIntent);
答案 2 :(得分:1)
试试这个
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com");
startActivity(intent);