Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 android 应用程序中解析本地 xml 文件,但有些代码是以 HTML 格式存储在 xml 标记中的 CDATA 部分中。我怎样才能得到解析的数据呢?
我找到了将 CDATA 部分字符串传递给 textview 的解决方案
textView.setText((Html.fromHtml(string),TextView.BufferType.SPANNABLE);