layout_actionbar_back.xml 850 Bytes
<?xml version="1.0" encoding="utf-8"?>

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toolbar"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:theme="@style/ThemeOverlay.AppCompat.Light"
    app:contentInsetEnd="?attr/actionBarSize"
    android:visibility="gone"
    tools:visibility="visible">


    <TextView
        android:id="@+id/toolbarTitle"
        style="@style/ActionbarTitleStyle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:lines="1"
        tools:text="here is title"/>

</android.support.v7.widget.Toolbar>