I am able to set custom font to my text view like this
Typeface typeface = Typeface.createFromAsset(context.getAssets(),"fonts/akshar.ttf");
setTypeface(typeface);
How can I set same thing to default Toast so that I am able to render my locale text in toast messages. I am able to set Gravity, duration but not typeface.
Thanks In Advance.
YOu can Create a custom Toast as:
and for more details how we create a custom Toast see CustomToastView