WebView
Overview
WebView embedded browser — supports H5 and JS operations
Example
- Option 1: Load HTML from the layout folder
<WebView android:layout_height="wrap_parent"
android:layout_width="match_parent"
android:url="main.html"
/>
- Option 2: Load HTML from the network
<WebView android:layout_height="wrap_parent"
android:layout_width="match_parent"
android:url="http://jd.com"
/>
Properties
Common Properties
Private Properties
| Property | Description | Values |
|---|---|---|
| url | Web page URL | Supports HTML in layout folder and HTTP URLs |