Good day. Tell me, please, how to completely fill the Toolbar: on the left is a side-by-side menu button, on the right, a square icon on the right, with the same dimensions, and a heading between them. I can not understand where left the place.
<android.support.v7.widget.Toolbar xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/toolbar" android:layout_height="59dp" android:layout_width="match_parent" android:background="@color/colorTopBarMenu" app:theme="@style/OrangeAppTheme" app:popupTheme="@style/OrangeAppTheme"> <LinearLayout android:layout_width="match_parent" android:layout_height="59dp"> <Button android:layout_width="59dp" android:layout_height="59dp" android:padding="0dp" android:layout_margin="0dp" android:background="@mipmap/icon_menu" android:id="@+id/button2" /> <TextView android:text="@string/main_titale" android:layout_width="200dp" android:layout_height="30dp" android:gravity="center" android:textSize="17sp"/> </LinearLayout> 