0

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.?I want gujarati Title at this point

Please Specify The Font...

Thanks in advance

Bhavin Kevadiya
  • 224
  • 3
  • 16

2 Answers2

0

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);
1234567
  • 2,226
  • 4
  • 24
  • 69
0

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