webview加载html时使用assets文件夹下的css或者js文件

开发中我们经常会遇到使用assets文件夹下的.css或者.js文件去给html设置样式或者字体等。直接上代码,其实我的思路就是把css和js拼进去。


String html = " \"viewport\" content=\"width=device-width, initial-scale=1\">
\"stylesheet\" type=\"text/css\" href=\"article.css\" />
" + "html片段"+"";

webview.loadDataWithBaseURL("file:///android_asset/", html , "text/html", "utf-8", null);

flexible.js是assets文件下的js文件

article.css是assets文件下的css文件

webview加载html时使用assets文件夹下的css或者js文件_第1张图片

你可能感兴趣的:(Android,Android开发问题)