How to get text on an ActionBar Icon?
Here is some example code that worked for me. 1: Create a layout for your badge menu item. <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”48dp” android:layout_height=”fill_parent” android:layout_gravity=”right” > <!– Menu Item Image –> <ImageView android:layout_width=”48dp” android:layout_height=”fill_parent” android:clickable=”true” android:src=”https://stackoverflow.com/questions/13288989/@drawable/bkg_actionbar_notify_off” /> <!– Badge Count –> <TextView android:id=”@+id/actionbar_notifcation_textview” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:layout_alignParentRight=”true” android:padding=”@dimen/padding_small” android:text=”99″ android:textColor=”@color/holo_orange_dark” /> </RelativeLayout> 2: Create a menu item in … Read more