This is my tamil html unicode string

முதல் பக்க செய்திகள்

I am using this code:

    TextView text=(TextView)findViewById(R.id.text); // initialize to your textview
    Typeface tf = Typeface.createFromAsset(this.getAssets(),"fonts/tamil.ttf");
    text.setTypeface(tf);
    text.setText("முதல் பக்க செய்திகள்");

In Android, is this possible?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

First of all you have to understand that there is no Tamil Language support in Android OS (except few samsung mobiles). You will only see boxes if you use unicode tamil font in your app. Reason is there are no Tamil fonts in the system.

There is a work around for this solution. All you have to do is, download the Bamini font and place it in your assets folder. And create TypeFace with the font Bamini and set it to the TextView.

Typeface font1 = Typeface.createFromAsset(getAssets(), "fonts/Bamini.ttf");
customText1.setTypeface(font1);

Now use a converter to convert Unicode font into Bamini encoding. instead of the unicode text provide the converted Bamini encorded script into the setText method.

As you can see your method is right, but use a non-Unicode Tamil font for TypeFace and it'll work like charm. I used this method and successfully developed couple of Tamil apps.

Good luck.

link|improve this answer
sorry, I forgot to mention something. please see the updated answer. – Mayu Mayooresan Aug 22 '11 at 6:43
You can't directly use the unicode script. That is because no Tamil rendring support and font available in Android OS. What you can do is convert the unicode string into Bamini encording with the site I gave above. and use the string u get from the converter in the SetText method of your TextView. Hope that'll help you. – Mayu Mayooresan Aug 22 '11 at 6:49
make sure you have folder named "fonts" and place Bamini.ttf inside. As you can see in the code, bamaini.ttf is retreived from font folder. Make sure the font Name and the name you give in the code is same. (capital small -case sensitive) – Mayu Mayooresan Aug 22 '11 at 6:50
i want coding for convert Unicode font into Bamini encoding.please help me.. for this tamil news feed feeds.feedburner.com/dinamalar/Front_page_news?format=xml – Jeeva Aug 22 '11 at 7:02
I'm not sure how u can do it real time. use google search to figure it out. – Mayu Mayooresan Aug 22 '11 at 9:06
show 1 more comment
feedback

Thanks Mayu.. Nice info...

Jeeva,.. Just view the source of this page http://www.islamkalvi.com/web/unicode_to_bamini.htm.. you will get one JavaScript function you can use that for convert Unicode font into Bamini encoding.

link|improve this answer
feedback

May be I am late to this discussion, just thought its worth to share.

To convert unicode to TSCII please refer to http://www.thamizha.com/news/thamizhas-android-tamilvisai-01-released. They have released an InputMethod for Tamil and its opensource.

Here is the link for their application source code http://code.google.com/p/android-tamilkey/source/checkout. There is a class called UnicodeUtil which converts Unicode to TSCII on the fly.

Anbudan, Arun

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.