支持加载Html内容的TextView:HtmlTextView for Android
jopen
10年前
HtmlTextView是Android TextView控件的一个扩展,可以加载的HTML并将其转换成Spannable用于显示它。这是WebView组件的一个替代。
HtmlTextView text = new HtmlTextView(this); // loads html from string and displays cat_pic.png from the app's drawable folder text.setHtmlFromString("<h2>Hello wold</h2><ul><li>cats</li><li>dogs</li></ul><img src=\"cat_pic\"/>", true);