Android toolbar center title and custom font

To use a custom title in your Toolbar all you need to do is remember is that Toolbar is just a fancy ViewGroup so you can add a custom title like so: <android.support.v7.widget.Toolbar android:id=”@+id/toolbar_top” android:layout_height=”wrap_content” android:layout_width=”match_parent” android:minHeight=”?android:attr/actionBarSize” android:background=”@color/action_bar_bkgnd” app:theme=”@style/ToolBarTheme” > <TextView android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:text=”Toolbar Title” android:layout_gravity=”center” android:id=”@+id/toolbar_title” /> </android.support.v7.widget.Toolbar> This means that you can style … Read more

How do I change the background color of the ActionBar of an ActionBarActivity using XML?

As per documentation – “You can control the behaviors and visibility of the action bar with the ActionBar APIs, which were added in Android 3.0 (API level 11).” So, ActionBar will not work for your target environment which is at API level 10 (Android 2.3.3). Just in case, if you target for minimum API level … Read more