Eszett (ß) In Android App
The german 'ß'character in my res/layout/activity.. file gets automaticly converted to 'ss' in my app. Even if I set my language and keyboard to German it still won't show up. Is
Solution 1:
i fixed it: in German there is no capital version of "ß", only lower case. version. Buttons are however by default upper case. So android converts it to "SS". Therefore only android:textAllCaps="false"
needs to be added to my button xml.
Post a Comment for "Eszett (ß) In Android App"