3

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

javatar
  • 115
  • 11

3 Answers3

0

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

Varun Vishnoi
  • 980
  • 1
  • 9
  • 32
0
Locale locale = new Locale("tr");
Locale.setDefault(locale);
Valeh Ağayev
  • 556
  • 4
  • 12
0

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

javatar
  • 115
  • 11