2015-06-06 88 views
0

我有這樣的HTML字符串如何顯示在文本視圖這個HTML文本的Android

「由\ u003ca HREF人數= \」 http://www.indiacom.com/ \ 「\ u003eIndiacom黃頁\ u003c/A \ u003e」

如何我可以在文本視圖中顯示嗎?

Html.fromhtml()不是wrking。

+0

把它定義在'string.xml'如果它是靜態的。如果它是動態的,那麼就像這樣做:'Html.fromhtml(「Listings by \ u003ca href = \」http://www.indiacom.com/ \「\ u003eIndiacom Yellow Pages \ u003c/a \ u003e」);' – kId

+0

Html .fromhtml()不起作用,它給出了一個例外 – user3615760

+0

發佈你的問題與**錯誤**你有 – kId

回答

0

試試這個下面的代碼

String value = "<html> <a href=\"http://example.com/\">example.com</a> </html>"; 
tv= (TextView) findViewById(R.id.textViewSite); 
tv.setText(Html.fromHtml(value)); 
tv.setMovementMethod(LinkMovementMethod.getInstance()); 
0

添加下面的代碼在你的應用程序中顯示HTML字符串:

tv1.setText(Html.fromHtml("<a href=\""http://www.indiacom.com/"\">" Indiacom Yellow Pages "</a>")); 
tv1.setClickable(true); 
tv1.setMovementMethod (LinkMovementMethod.getInstance()); 
相關問題