Android:在活动之间传递包含 HTML 的字符串?
我正在尝试使用意图附加包在两个活动之间传递字符串。
父活动:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论