Reputation: 742
I am trying to display telugu fonts in my app. Code
Typeface Telugu;
Telugu = Typeface.createFromAsset(getAssets(),"fonts/withG.ttf");
TextView tt = (TextView)findViewById(R.id.label);
tt.setTypeface(Telugu);
tt.setText("Some telugu text");
This works fine in Android 4.2. But when run the app in Android 2.2, conjuncts are not rendered properly.
Guys anybody knows what to do?
Upvotes: 1
Views: 858
Reputation: 12373
The old version of android had very few language support.. like version 2.2 had only 26 languages support, which they doubled in 2.3 and further increased with more upcomming versions.
http://www.talkandroid.com/22956-android-2-3-gingerbread-doubles-language-support-from-2-2-froyo/
It is because of the lack of support in 2.2 it is not rendered properly.
Upvotes: 1