Skip to main content

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

See Common Properties

Private Properties

PropertyDescriptionValues
urlWeb page URLSupports HTML in layout folder and HTTP URLs