Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Align the text in the toolbar with the icons

Tags:

android

xml

Here's how my toolbar currently looks. The text seems completely mislaid.

enter image description here

Here's the code:

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="56dp"
    android:background="@color/blue_grey_900"
    android:gravity="center"
    android:minHeight="?android:attr/actionBarSize"
    app:popupTheme="@style/ToolbarPopup"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:elevation="5dp"/>

What's causing the misalignment?

like image 300
user4351462 Avatar asked Dec 06 '25 08:12

user4351462


1 Answers

change your code to android:layout_height="?attr/actionBarSize

like image 184
royB Avatar answered Dec 07 '25 20:12

royB