"Found attribute : Albanië instead of Albanié"

This suggests you are displaying UTF-8 text (which is was logcat does) as
Latin-1. To wit: ë = 0xC3 0xAB which are UTF-8 for Latin1 0xEB. However, é
is 0xEB, not 0xAB, so there's something else afoot.

Also note that when you see the rectangle with the ? in it, most likely
means you are trying to read a Latin-1 encoding as UTF-8. For example, 0xEB
by itself is invalid UTF-8. It would require two additional bytes each with
the top two bits of 10.

But good progress, bring on the data to analyze this problem. It would help
if you posted the URL to the XML

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to