Android:在活动之间传递包含 HTML 的字符串?

发布于 2024-11-09 01:53:35 字数 468 浏览 2 评论 0原文

我正在尝试使用意图附加包在两个活动之间传递字符串。

父活动:

Intent i = new Intent(Advice.this, AdviceDetail.class);
Bundle bAdvice = new Bundle();
bAdvice.putString("description", description);
i.putExtras(bAdvice);
startActivity(i);

子活动:

Bundle bAdviceDetails = getIntent().getExtras();
String description = bAdviceDetails.getString("description");

但是,任何 HTML 总是从我的字符串中删除!为什么?我该如何解决这个问题?我尝试过使用 charArray;同样的事情发生了。

I'm trying to pass a string between 2 activities using an intent extras bundle.

Parent activity:

Intent i = new Intent(Advice.this, AdviceDetail.class);
Bundle bAdvice = new Bundle();
bAdvice.putString("description", description);
i.putExtras(bAdvice);
startActivity(i);

Child activity:

Bundle bAdviceDetails = getIntent().getExtras();
String description = bAdviceDetails.getString("description");

However, any HTML is always stripped out of my string! Why? How do I work around this?? I've tried using a charArray; same thing happens.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文