WebView内嵌浏览器
说明
WebView内嵌浏览器,支持H5和JS操作
使用示例
- 第一种 加载layout文件夹中的html
<WebView android:layout_height="wrap_parent"
android:layout_width="match_parent"
android:url="main.html"
/>
- 第二种网络上的html
<WebView android:layout_height="wrap_parent"
android:layout_width="match_parent"
android:url="http://jd.com"
/>