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.