Skip to content Skip to sidebar Skip to footer

Padding/margin On The Left Side Of My Activity/actionbar - Dont Know Where It Comes From, Cannot Remove It

There is some padding or margin to the left of my appbar/toolbar and my activity. I don't know where it comes from and I don't know how to remove it. AndroidManifest.xml

Solution 1:

just add

app:contentInsetEnd="0dp"app:contentInsetStart="0dp"

to your toolbar

<android.support.v7.widget.Toolbar
        android:id="@+id/toolbarLegend"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:contentInsetEnd="0dp"
        app:contentInsetStart="0dp">

Post a Comment for "Padding/margin On The Left Side Of My Activity/actionbar - Dont Know Where It Comes From, Cannot Remove It"