문제

In my text to speech (For Turkish) project, I have a EditText. User can enter Turkish chars (ı, ş, ç, ö), however editText converts them some other unknown chars. How can I prevent this?

Thanks

도움이 되었습니까?

해결책 3

I have started to use Android 2.3.3 and Turkish Language is supported. Problem solved

다른 팁

Check out this site. It explains all about the ability of implementing different languages in your app. It involves providing different string resources for each locale you want to support.

Click here

Locale locale = new Locale("tr");
Locale.setDefault(locale);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top