Skip to content

Instantly share code, notes, and snippets.

@tbruyelle
Created December 30, 2013 14:55
Show Gist options
  • Save tbruyelle/8183003 to your computer and use it in GitHub Desktop.
Save tbruyelle/8183003 to your computer and use it in GitHub Desktop.
update action bar title
int titleId = getResources().getIdentifier("action_bar_title", "id",
"android");
TextView yourTextView = (TextView) findViewById(titleId);
yourTextView.setTypeface(TypefaceUtil.getTypeFace(this, "fonts/Roboto-Light.ttf"));
yourTextView.setTextAppearance(this, R.style.TextAppearance_GesicaManager_Title);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment