How can I open a URL in Android's web browser from my application?

前端 未结 30 2765
庸人自扰
庸人自扰 2020-11-21 22:09

How to open an URL from code in the built-in web browser rather than within my application?

I tried this:

try {
    Intent myIntent = new Intent(Int         


        
30条回答
  •  花落未央
    2020-11-21 23:08

    You can also go this way

    In xml :

    
    
    

    In java code :

    public class WebViewActivity extends Activity {
    
    private WebView webView;
    
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.webview);
    
        webView = (WebView) findViewById(R.id.webView1);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.loadUrl("http://www.google.com");
    
     }
    
    }
    

    In Manifest dont forget to add internet permission...

提交回复
热议问题