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.

link|improve this question
Try sending it as a byte array. That might help you. – mudit May 19 '11 at 8:57
Oops, my bad. I didn't realise actually was using Html.fromHtml before adding to the bundle. Converting this to a string must remove the html tags. – ShibbyUK May 19 '11 at 9:13
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.