Want to change Navigation Icon Position to 8dp left.
I have attach the screenshot
Black Colour line is the Current Position.
Orange Colour line is the position where, I want my Navigation icon to be placed.
Things I have implemented so far are.
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="center"
android:background="?attr/colorPrimary"
android:clipToPadding="false"
android:gravity="center|start"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
android:contentInsetLeft="0dp"
android:contentInsetStart="0dp"
app:navigationIcon="@drawable/arrow"/>
and
if (actionBar != null) {
// Tried Both
actionBar.setHomeButtonEnabled(true); & actionBar.setHomeButtonEnabled(false);
toolbar.setContentInsetsAbsolute(0, 0);
}