Sherlock Actionbar Custom Font

I want to change the font Title of the action bar , tabs, and Menu items for Roboto.

I'm trying to figure out if this can be done through styles? since I cannot create a custom view for them, which is the best way to assign custm font.

I looked at the following links

stack overflow

How to set custom font in ActionBar header?

+5
source share
1 answer

Here is the code that did this for me:

<style name="AppTheme" parent="AppBaseTheme">
    ...
    <item name="android:typeface">serif</item>
    ...
</style>

, android. , , , .

EDIT: , . : http://www.jayway.com/2013/01/22/custom-typeface-in-android/ : http://www.androidguys.com/2008/08/18/fun-with-fonts/

+4

All Articles