现在的位置: 首页 > web前端 > 正文

webview加载本地html、本apk内html和远程URL

2018年09月11日 web前端 ⁄ 共 238字 ⁄ 字号 评论关闭
//打开本包内asset目录下的index.html文件
 
wView.loadUrl(" file:///android_asset/index.html ");   
 
//打开本地sd卡内的index.html文件
 
wView.loadUrl("content://com.android.htmlfileprovider/sdcard/index.html");
 
//打开指定URL的html文件
 
wView.loadUrl("http://blog.csdn.net/anjon520");

抱歉!评论已关闭.