我有一个这样的字符串:
String s="12 year old Manick is <b>three</b> times as old as his brother Rahul. How old will Manick be when he is twice as old as Rahul ?";
当我将此字符串设置为 TextView 时,输出如下所示:
我想要的是,输出是这样的:
12 岁的 Manick 是他兄弟 Rahul 的三倍。当 Manick 是 Rahul 的两倍时,他会多大?
应该对原始字符串做什么才能在 TextView 中获得所需的输出?
实际上,我的要求是提取 HTML 标签内的文本,将粗体格式应用于标签内的文本,并在 TextView 中显示之前从字符串中删除标签。
提前致谢!
PS:字符串来自 XML 文件,因此可能会有所不同!