I'm trying to customize my Action Bar view and I defined my own one. The problem is it doesn't correctly fill the Action Bar.
I would like the left lens to be completely on the left, but I can't! Here's my Layout:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
>
<ImageView
android:id="@+id/iv_logo"
android:layout_width="325dip"
android:layout_height="50dip"
android:layout_centerInParent="true"
android:contentDescription="@string/app_name"
android:clickable="true"
android:src="@drawable/logo"
android:onClick="home_click" />
<ImageView
android:id="@+id/burger"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_margin="0dp"
android:background="@null"
android:src="@drawable/lente" />
<ImageView
android:id="@+id/imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_margin="15dp"
android:layout_marginEnd="25dp"
android:layout_marginRight="25dp"
android:background="@null"
android:src="@drawable/lente" />