I'm trying to do some things on the Action Bar in Android
How can I change the Title of the action bar to Gujarati Font.?
Please Specify The Font...
Thanks in advance
I'm trying to do some things on the Action Bar in Android
How can I change the Title of the action bar to Gujarati Font.?
Please Specify The Font...
Thanks in advance
you will need to set gujrati fonts using a 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 for 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);
you can do customization for actionbar http://javatechig.com/android/actionbar-with-custom-view-example-in-android
you can add gujarati font the code is here