Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|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

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.