0

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

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

4 回答 4

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);
于 2013-01-08T07:08:24.347 回答
1
Uri uri = Uri.parse("http://www.yourlinkhere.com");
    Intent intent = new Intent(Intent.ACTION_VIEW, uri);
    startActivity(intent);

这是您想要的代码。希望它会有所帮助。

于 2013-01-08T07:08:40.430 回答
1

我的理解是你想通过点击一个按钮来打开一个网站。打开 URL 的代码是:

Uri uri = Uri.parse("http://www.google.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
于 2013-01-08T07:08:47.730 回答
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/"); 

    }
}); 
于 2013-01-08T07:11:08.203 回答