1
我正在讀取android中的文本文件(html標籤文件),我試圖將其轉換爲html。 我得到錯誤,當我的setText在的TextView(輸出).. 方法的setText(字符串,TextView.BufferType)是未定義的類型的StringBuffer 如何改變的StringBuilder爲String得到輸出中...在文本視圖中將StringBuilder變量轉換爲html
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幫助...
我試過同樣的事情,但是這並不適用於android,但可能與ios。嘗試製作不同的字符串,然後一起使用。如果您需要幫助,請讓我知道 –