My Profile Photo

Kris Lee


专注移动互联,提供移动开发、培训与解决方案


Android的webview加载本地html、assert内html和网络URL

//打开本包内asset目录下的test.html文件
wView.loadUrl(" file:///android_asset/test.html ");  
//打开本地sd卡内的kris.html文件
wView.loadUrl("content://com.android.htmlfileprovider/sdcard/kris.html");
//打开指定URL的html文件
wView.loadUrl("http://www.krislq.com/");