我正在尝试使用intent extras bundle在两个活动之间传递一个字符串。
家长活动:
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;同样的事情发生了。