如何在eclipse for android中创建一个用作链接的按钮

时间:2012-06-03 16:01:52

标签: java android xml eclipse

我需要知道如何创建一个按钮来打开orroids Web浏览器并导航到特定的URL。我正在使用eclipse并且已经知道如何制作按钮并单击监听器。 谢谢你的帮助。

3 个答案:

答案 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);