Intent intent = new Intent(this,MainActivity.class); startActivity(意向);
答案 0 :(得分:2)
启动浏览器:
Uri uri = Uri.parse("http://www.example.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
在您的Activity中启动WebView:
WebView webview = new WebView(this);
setContentView(webview);
webview.loadUrl("http://stackoverflow.org/");
这一切都在这里解释:http://developer.android.com/reference/android/webkit/WebView.html