0

I want to change the distance between the left side of the device screen and the action bar icon. I want to totally remove this space ... enter image description here

I want it to look like this: enter image description here

I have tried to put margin or padding inside the action bar customised style I have created but nothing...

<style name="BCPActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
        <item name="android:background">@drawable/button_third_level_menu</item>
        <item name="android:titleTextStyle">@style/BCPTheme.ActionBar.TitleTextStyle</item>
        <item name="android:height">55dp</item>
        <item name="android:layout_marginLeft">-2dp</item>
    </style>
Blerta Dhimitri
  • 3,253
  • 5
  • 22
  • 33
  • I found solution here: http://stackoverflow.com/questions/16026007/remove-padding-around-action-bar-left-icon-on-android-4-0 – ucdevs Jul 13 '14 at 07:17

1 Answers1

0

try

<item name="paddingLeft">0dp</item>

ucdevs
  • 49
  • 8