can i change the android actionbar title to any Gujarati font? -


i'm trying things on action bar in android

how can change title of action bar gujarati font.?i want gujarati title @ point

please specify font...

thanks in advance

you need set gujrati fonts using ttf file

a text view example

textview text = (textview) findviewbyid(r.id.custom_font);     typeface font = typeface.createfromasset(getassets(), "yourfont.ttf");     text.settypeface(font); 

and action bar

int titleid = getresources().getidentifier("action_bar_title", "id",             "android");     textview yourtextview = (textview) findviewbyid(titleid);     yourtextview.settextcolor(getresources().getcolor(r.color.black));     yourtextview.settypeface(face); 

Comments