跳到主要内容

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"
/>

属性说明

公有属性

请参考 公有属性

私有属性

属性名说明可选值
url网页地址支持layout内部的html,也支持http网络上的html