I'm setting Action Bar for my app's ChatActivity but space between Icon and Title is so much that title is not visible
Here is my code
ab.setDisplayHomeAsUpEnabled(true);
ab.setDisplayShowHomeEnabled(true);
ab.setLogo(R.drawable.profile_default);
ab.setDisplayUseLogoEnabled(true);
ab.setTitle("Hello");
ab.setDisplayShowTitleEnabled(true);
I dont know why there is much spacing between elements. Please help me fix this.
edit 1: Here is part of my activity layout xml:
<android.support.v7.widget.Toolbar
android:id="@+id/contacts_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

try this,
Hope this is helpful.