Change the font of ActionBar title

Change the font of ActionBar title using SpannableString.

Just follow the code.

SpannableString s = new SpannableString("It's a new font");
s.setSpan(new TypefaceSpan(this, "arial.ttf"), 0, s.length(),
       Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
getActionBar().setTitle(s);

Comments

Popular posts from this blog

Flutter Bloc - Clean Architecture

Dependencies vs Dev Dependencies in Flutter

What's new in android 14?