我的res / layout / activity ..文件中的德语“ß”字符在我的应用程序中自动转换为“ss”。即使我将语言和键盘设置为德语,它仍然不会出现。是否可以在Android中显示“ß”?
编辑:
./configure --toolchain=msvc --enable-debug --arch=x86 --extra-cflags=-MTd
编辑2:
我修正了它:在德语中没有“ß”的资本版本,只有小写字母。版。但是,按钮默认为大写。因此android将其转换为“SS”。因此,只需要将<Button android:text="ß" .../>
添加到我的按钮xml中。
答案 0 :(得分:2)
我修正了它:在德语中没有“ß”的资本版本,只有小写字母。版。但是,按钮默认为大写。因此android将其转换为“SS”。因此,只需要将android:textAllCaps="false"
添加到我的按钮xml中。
link:http://www.vogella.com/tutorials/AndroidCamera/article.html