views:

951

answers:

3

Hi folks,

i want to type in different language in android other than english like hebrew... by providing ttf files . Are there any in build API's so i can use that .... Any help would be appreciated , Thnx in advance....

A: 

there are no built-in features for using *.ttf files. to use different languages look here:

http://developer.android.com/guide/topics/resources/resources-i18n.html#AlternateResources http://almondmendoza.com/2009/01/28/force-localize-an-application-on-android/

first link in android dev guide about making resources internalizable, second - how to switch locale in app.

alexkipar
There is so "built-in features for using *.ttf files". See my answer.
fiXedd
+3  A: 

There is an example on how to use custom typefaces in the API Demos. That said, you may not need to. This article seems to indicate that the default font (Droid) probably contains all the necessary characters for (at least) the target markets for Android.

Other than that, the developer site has pretty good documentation on how to "internationalize" an application.

fiXedd