我正在使用 Spanned 对象来处理一些 HTML 标签并在 TextView 上显示结果文本。但是 TextView 上的文本是空白的。
final Spanned output = Html.fromHtml(element.getText(), null,
new ElementTagHandler(element));
textView.setText(output);
在 textView 中,如果我设置了一个常量字符串,它会按预期工作
textView.setText("Hello"); \\ works perfectly
但是当我传入 Hello 时,它显示空白的 TextView。
<TextView
android:id="@+id/view123"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"/>
我是否缺少任何需要更新的标志?