nucleons
nucleons

Reputation: 742

Telugu fonts (telugu conjuncts) not working properly in Android 2.2

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

Answers (1)

AurA
AurA

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

Related Questions