Search code examples
javaandroidandroid-actionbargraphical-logo

How to set ActionBar logo to Text (TextView)?


I've been trying to make the ActionBar logo, or the Up button, a text instead of an image. actionbar.setLogo(); accepts only a drawable resource. Inflating a layout with a TextView didn't do the trick.

Basically, what I'm trying to accomplish is this:

enter image description here

The first one is from the new DeskClock app from Android 4.2 and the second is from the Contacts app. I checked the code in GitHub but I couldn't find anything.


Solution

  • Here is an implementation of @CommonsWare's option #1, works perfectly.

    TextView upTextView = (TextView) getLayoutInflater().inflate(
            R.layout.up_text, null);
    upTextView.setText("CITIES");
    upTextView.measure(0, 0);
    upTextView.layout(0, 0, upTextView.getMeasuredWidth(), 
            upTextView.getMeasuredHeight());
    Bitmap bitmap = Bitmap.createBitmap(upTextView.getMeasuredWidth(),
            upTextView.getMeasuredHeight(), Bitmap.Config.ARGB_8888);
    Canvas canvas = new Canvas(bitmap);
    upTextView.draw(canvas);
    BitmapDrawable bitmapDrawable = new BitmapDrawable(getResources(), bitmap);
    

    R.layout.up_text:

    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="4dp"
        android:paddingRight="4dp"
        android:textColor="#f00"
        android:textSize="20sp"
        android:textStyle="bold" />