I have an extended Toolbar
but it's title is getting placed at the centre like this:
Here's my code:
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="@dimen/appbar_height"
android:minHeight="?android:attr/actionBarSize"
android:background="@color/colorPrimaryLight"
app:popupTheme="@style/AppTheme.PopupOverlay">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
How can I place this title adjacent to the back arrow up there?
Please let me know.
Do it like this:
Or, Remove the
android:text
then set the title :Output: