1. [代碼][Java]代碼
1
2
3
4
5
6
7
8
9
10
11
|
//打開本包內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://m.oschina.net"
);
|
轉自:http://www.oschina.net/code/snippet_54100_6227