is it possible to display pure html code via textview on android

后端 未结 2 1190
[愿得一人]
[愿得一人] 2021-01-21 06:16

I\'m trying to show HTML string with TextView on my android App. I\'m curious about that how could I make it possible to show HTML with inline style via TextView. There\'re some

2条回答
  •  广开言路
    2021-01-21 06:45

    You need to use Html.fromHtml() to use HTML in your textView as a text

    example :

    textView.setText(Html.fromHtml("

    Title


    Description here

    "));

提交回复
热议问题