我尝试在webview中播放html和js代码。 代码包含符号'%',webview返回错误ERROR_BAD_URL。
<style type='text/css'>
test{
width: 100%;
height: 100%;
}
</style>
任何想法?
-Z
答案 0 :(得分:12)
webview.loadDataWithBaseUrl
导致问题,请使用.loadData
。
答案 1 :(得分:7)
本周末我自己遇到了这个问题。使用“%25”来创建%符号。您的新代码应该看起来像......
<style type='text/css'>
test{
width: 100%25;
height: 100%25;
}
</style>
答案 2 :(得分:2)
试试这个
mWebView.loadDataWithBaseURL(null, html,"text/html", "UTF-8", null);