在我的Android应用程序中,我正在尝试显示德语文本。 öäüß这些字符无法在TextView
中显示。如果有人知道如何设置字体或如何显示字符让我知道。我从服务中收到的数据。
答案 0 :(得分:5)
我认为您应该阅读wikipedia: Character_encoding以及The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)
答案 1 :(得分:0)
我的问题解决了我添加
DocumentBuilder db = dbf.newDocumentBuilder();
ByteArrayInputStream bis = new ByteArrayInputStream(xml.getBytes("UTF-8"));
doc = db.parse(bis);
在我的xml阅读器代码中,现在我可以正确地显示德语字符......