I decode HTML entities using:
String total_string = Html.fromHtml(result).toString();
But it doesn't work for hex entitites.
// decimal & - works
// hex & - does not work
What should I do to decode?
I decode HTML entities using:
String total_string = Html.fromHtml(result).toString();
But it doesn't work for hex entitites.
// decimal & - works
// hex & - does not work
What should I do to decode?