How (if possible) could I set a custom font in a ActionBar title text(only - not the tab text) with a font in my assets folder? I don't want to use the android:logo option.

Thnx for the help!!

link|improve this question

75% accept rate
feedback

2 Answers

up vote 18 down vote accepted

I agree that this isn't completely supported, but here's what I did. You can use a custom view for your action bar (it will display between your icon and your action items). I'm using a custom view and I have the native title disabled. All of my activities inherit from a single activity, which has this code in onCreate:

this.getActionBar().setDisplayShowCustomEnabled(true);
this.getActionBar().setDisplayShowTitleEnabled(false);

LayoutInflater inflator = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflator.inflate(R.layout.titleview, null);

//if you need to customize anything else about the text, do it here.
//I'm using a custom TextView with a custom font in my layout xml so all I need to do is set title
((TextView)v.findViewById(R.id.title)).setText(this.getTitle());

//assign the view to the actionbar
this.getActionBar().setCustomView(v);

And my layout xml (R.layout.titleview in the code above) looks like this:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/transparent" >

<com.your.package.CustomTextView
        android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:textSize="20dp"
            android:maxLines="1"
            android:ellipsize="end"
            android:text="" />
</RelativeLayout>
link|improve this answer
THNX!!! I'll try it out. – Andaero Jan 5 at 23:06
This works fine for the title but if you want a title and tabs it places the custom view to the right of the tabs not left like the title would be. I would love to be able to alter the actual title. – draksia Feb 2 at 16:11
THX! it works great! – kyp Apr 25 at 9:32
Great solution. If you need a custom text view class that allows specification of the font in XML, please try mine! github.com/tom-dignan/nifty -- it's very easy. – Tom Dignan May 18 at 9:32
feedback

I don't think this is possible.

link|improve this answer
2  
it's not supported per-say, but you can easily work around it. See my post. – Sam_D Jan 5 at 19:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.