从Android应用程序连接到一个网站

时间:2013-01-08 07:04:45

标签: android

我正在开发一个简单的Android应用程序,点击我的应用主页中的“开始”按钮,重定向到特定网站(例如谷歌)。我已将启动按钮的@id设置为“bStart”。该方法的编码应该是什么样的:

 start.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            ------------------
            ------------------
            ------------------
        }
});

4 个答案:

答案 0 :(得分:1)

    Uri uriUrl = Uri.parse(url);
    Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);
    startActivity(launchBrowser);

    Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
    myWebLink.setData(Uri.parse("http://www.google.co.uk"));
    startActivity(myWebLink);

答案 1 :(得分:1)

Uri uri = Uri.parse("http://www.yourlinkhere.com");
    Intent intent = new Intent(Intent.ACTION_VIEW, uri);
    startActivity(intent);

这是你想要的代码。它会有所帮助。

答案 2 :(得分:1)

据我所知,您想通过点击按钮打开网站。 打开URL的代码是:

Uri uri = Uri.parse("http://www.google.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

答案 3 :(得分:1)

start.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub

       WebView webview = new WebView(classname.this);
       webview.setWebViewClient(new WebViewClient());       
       webview.setWebChromeClient(new WebChromeClient()); 
       webview.loadUrl("https://www.google.co.in/"); 

    }
});