Uri uri = Uri.parse(“https://www.example.com”);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
See Intent for more information.
To provide a WebView in your own Activity, include a in your layout, or set the entire Activity window as a WebView during onCreate():
请参阅意图获取更多信息。
要在你的activity中支持webview,需要在layout中添加标签,或者在 onCreate()方法中将整个activity窗口设置为一个webview。
WebView webview = new WebView(this);
setContentView(webview);
Then load the desired web page:
然后加载所需网页
// Simplest usage: note that an exception will NOT be thrown
// if there is an error loading this page (see below).
// 最简单的应用:注意在这种情况下,如果在加载的页面出现错
// 误,这个异常不会被抛出(如下)
webview.loadUrl(“https://example.com/”);
// OR, you can also load from an HTML string:
//而或,你也可以加载HTML字符串
String summary = “You scored 192 points.”;
webview.loadData(summary, “text/html”, null);
// … although note that there are restrictions on what this HTML can do.
// See loadData(String, String, String) and loadDataWithBaseURL(String, String, String, String, String) for more info.
// Also see loadData(String, String, String) for information on encoding special characters.
当然,要注意的是加载HTML是有限制的
请查阅loadData(String, String, String)和loadDataWithBaseURL(String, String, String, String, String)文档获取更多信息。
有关编码特殊字符的信息,另请参阅loadData(String,String,String)。
A WebView has several customization points where you can add your own behavior. These are:
Creating and setting a WebChromeClient subclass. This class is called when something that might impact a browser UI happens, for instance, progress updates and JavaScript alerts are sent here (see Debugging Tasks).
Creating and setting a WebViewClient subclass. It will be called when things happen that impact the rendering of the content, eg, errors or form submissions. You can also intercept URL loading here (via shouldOverrideUrlLoading()).
Modifying the WebSettings, such as enabling JavaScript with setJavaScriptEnabled().
Injecting Java objects into the WebView using the addJavascriptInterface(Object, String) method. This method allows you to inject Java obje