Character encoding in Android app (German umlauts) -
since moving project eclipse android studio, encoding issues have appeared. need use german umlauts (ä,ö,ü) in german language version of app , far can see in app/src/main/res/values/strings.xml
, file seems encoded in utf-8
(ä=ä, ö=ö, ü=ü) , top of file contains
<?xml version="1.0" encoding="utf-8"?>
in "file" - "settings" - "editor" - "file encodings:", set utf-8
.
however, in app, characters seem 'unencoded', iow, display "ä", "ö" , "ü" in raw textfile.
how can fix that? have lot of text strings maintain particular app, able edit strings naturally instead of possibly having enter utf-8 codes throughout text.
Comments
Post a Comment