我有一个带有一些格式的跨区文本。如何根据格式将其转换为字符串?

时间:2017-09-04 09:13:18

标签: java android string spanned

Spanned spanned = article.getArticleBody();
TextView body =(TextView) rootView.findViewById(R.id.article_body);

如何在正文TextView

中打印此内容

1 个答案:

答案 0 :(得分:1)

试试这个

Spanned spanned = article.getArticleBody(); 
body.setText(Html.toHtml(spannedText));

或者

 body.setText(spannedText);