我在android中读取文本文件(html标记文件),我试图将其转换为html。 我在 textView (输出)中 setText 时出现错误。 对于StringBuffer类型,方法setText(String,TextView.BufferType)是未定义的 如何将StringBuilder更改为String以获取输出...
String s = "";
StringBuilder str=null;
while ((s = buffer.readLine()) != null){
str.append(s+"/n");}
String a=str.toString().trim();
Spanned marked_up = Html.fromHtml(a);
output.setText((marked_up).toString(),BufferType.SPANNABLE);
plz help ...
答案 0 :(得分:1)
尝试这样。 (在TextView组件中显示HTML)
myTextView.setText(Html.fromHtml(a));