Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 347
Chris95X8 Avatar asked Feb 17 '23 23:02

Chris95X8


2 Answers

Off the cuff:

Option #1: Draw your text (TextView or directly) on a Bitmap-backed Canvas, and then supply a BitmapDrawable to setLogo().

Option #2: Hide the icon and logo and use setCustomView() to have your caret image and your text.

like image 198
CommonsWare Avatar answered Feb 27 '23 06:02

CommonsWare


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" />
like image 21
Matthias Robbers Avatar answered Feb 27 '23 06:02

Matthias Robbers