0
我正在接收html代碼中的webservice字符串,並且需要將它們放入此代碼中以放置TextView。在Textview中將HTML代碼轉換爲HTML
例子:
String str = "<b>Hello</b>";
// my attempt
textView.setText(Html.fromHtml(str));
// this only convert to <b>Hello</b> instead of running the html code.
笑。其作品 – 2012-01-14 21:16:10