i'm trying things on action bar in android
how can change title of action bar gujarati font.?
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
Post a Comment