JSON から HTML コードを取得しています。文字列に保存して webView に読み込む問題は、文字列に保存すると非常に多くの < " が変更される理由です。画像がロードされていない私の画面は次のようになります http://imgur.com/KHRJjqNどうすればいいですか?それをデコードする方法?? なぜそれをエンコードするのですか?エンコーディングを削除するには?ヘルプ
WebView wv = (WebView) findViewById(R.id.webview1);
{"Status":1,
"data":
[
{"product_id":"8569",
"name":"Scalp Med Hair Grow PC-0004..",
"description":"<p><b><font face="Arial">Scalp Med Hair Grow PC-0004.. <\/font><\/b><\/p>
\r\n\r \n<p><img border="0" height="257" src="http:\/\/www.megamall.com.pk\/image\/cache
\/data\/10011-Scalp-Med-Hairfall-Solution- 800x800.jpg" width="261" \/><\/p>\r\n\r
\n<p><b><font face="Arial" size="2">
Features: <\/font><\/b><\/p>\r\n\r\n<p><font face="Arial" size="2"><b>Scalp Med Hair
Grow<\/b> is an all natural formulation which includes the pure extracts of plants from
3 different continents.<br \/>\r\n<br \/>\r\nIs your Bald Spot getting bigger and bigger
every month?<br \/>\r\nIs the hair on your shower floor getting thicker while it gets
thinner and thinner on your head?<br \/>\r\n<br \/>\r\nThen Scalp Med Hair Grow
is for you. Scalp Med Hair Grow is an all natural formulation which includes the
pure extracts of plants from 3 different continents. This tried and tested formulation
will reach deep down to cleanse, revitalize and unblock the hair follicles allowing vital
nutrients to reach the hair roots and allow hair to grow again.<br \/>\r\n<br \/>\r\nScalp
Med Hair Grow is the only ecological product of its kind capable of treating alopecia
efficiently. In the first month, continual use of Scalp Med Hair Grow will recover
and strengthen the hair follicles. In the second month, your hair will stop
falling out altogether. And by the third month, new hair will start to grow.
<\/font><\/p>\r\n",
}
]}
when get in json and save in string
String htmldescription = school2.getJSONObject(0).getString("description");
wv.loadData(htmldescription, "text/html", "utf8");
// String htmldescription save data like this below
htmldescription ="
<p><b><font face="Arial">Scalp Med Hair Grow PC-0004..
</font></b></p> <p><img border="0" height=&
quot;257"
src="http://www.megamall.com.pk/image/cache/data/10011-Scalp-Med-Hairfall-Solution-
800x800.jpg" width="261" /></p>
<p><b><font face="Arial" size="2">Features:
</font></b></p><p><font face="Arial"
size="2"><b>Scalp Med Hair Grow</b>
is an all natural formulation which includes the pure extracts of plants from 3 different
continents.<br /><br />Is your Bald Spot getting bigger and bigger every
month?<br />Is the hair on your shower floor getting thicker while it gets thinner and
thinner on your head?<br /><br />
Then Scalp Med Hair Grow is for you. Scalp Med Hair Grow is an all natural
formulation which includes the pure extracts of plants from 3 different continents. This
tried and tested formulation will reach deep down to cleanse, revitalize and unblock the hair
follicles allowing vital nutrients to reach the hair roots and allow hair to grow again.<br
/><br />
Scalp Med Hair Grow is the only ecological product of its kind capable of
treating alopecia efficiently. In the first month, continual use of Scalp Med Hair Grow will
recover and strengthen the hair follicles. In the second month, your hair will
stop falling out altogether. And by the third month, new hair will start to
grow.</font></p>"