Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Spanned spanned = article.getArticleBody(); TextView body =(TextView) rootView.findViewById(R.id.article_body);
我如何在正文中打印这个TextView
TextView
尝试这个
Spanned spanned = article.getArticleBody(); body.setText(Html.toHtml(spannedText));
或这个
body.setText(spannedText);