当我从EditText保存文本时,我将其保存为Html.toHtml(editable);
现在我需要显示文本但没有HTML而不是EditText或TextView
我需要在通知栏通知中显示它,所以我需要所有HTML消失。
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setTicker("You have a recieved a message. " +Html.fromHtml(message).toString()) // html still showing
答案 0 :(得分:0)
android.text.Html.fromHtml(string).toString()
这很有用。