Why do i getting this left space within my toolbar? I want to cover the whole width of the parent toolbar space.

This is my code:
<android.support.v7.widget.Toolbar android:id="@+id/toolbar_activity"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/toolbar_background"
app:titleTextColor="@color/toolbar_text_color"
android:elevation="0dp"
android:theme="@style/ToolbarTheme"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
>
<com.miguelcatalan.materialsearchview.MaterialSearchView
android:id="@+id/search_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.v7.widget.Toolbar>
Why do i getting this left space within my toolbar? I want to cover the whole width of the parent toolbar space.
This is my code: