以下文字 [
fetched using HttpURLConnection.getInputStream(),
parsed using XmlPullParser.getText(),
sent as String (sText) to my Activity and
loaded with WebView.loadData(sText, "text/html", null)
<p>My friend scored 100% in the exam.</p>
未在我的活动中显示(在Android 2.3.5设备上) [抛出的错误是“网页不可用....”,但在阅读后续文本后,我可以确认文本已被提取到设备], 而
<p>My friend scored 100 percent in the exam.</p>
显示正确。 请注意,以上两个都在Android 4.1.1上正常显示。 任何指针都会有所帮助。 感谢。
答案 0 :(得分:0)
用%25代替%,做了伎俩....