gpt4 book ai didi

java - Android 应用程序无法很好地渲染 html 标签

转载 作者:行者123 更新时间:2023-12-01 20:55:42 24 4
gpt4 key购买 nike

这是我从网络服务中得到的字符串。

<p><strong>This is instructor's reply to the guest's MDB message</strong></p>

这就是我将其设置为 TextView 的方式

String Reply = parent.getString(TAG_ReplyMessage);
TextView ReplyTextView= (TextView) findViewById(R.id.reply_txt);
ReplyTextView.setText(Html.fromHtml(Reply));

但是应用程序显示的信息为 <p><strong>标签。

enter image description here

而它应该呈现这些标签,而不是显示它的 html。

任何帮助将不胜感激。

最佳答案

可能对你有帮助我在我的项目中也遇到了同样的问题,这对我有用。也许它会对您有所帮助:

String reply = parent.getString(TAG_ReplyMessage);
TextView ReplyTextView = findViewById(R.id.reply_txt);
String htmltext = Html.fromHtml(reply).toString();
ReplyTextView.setText(Html.fromHtml(htmltext));

关于java - Android 应用程序无法很好地渲染 html 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42389878/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com