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.