Looks like it is a bug, but Galaxy S5 and Note 2 add an extra space in front of home drawable when setDisplayHomeAsUpEnabled() is set to false
Asked
Active
Viewed 163 times
1 Answers
0
We finished by enabling home as up indicator as the following:
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
but then hiding it inside styles.xml:
<item name="android:homeAsUpIndicator">@null</item>

goRGon
- 4,402
- 2
- 43
- 45
-
Alexey, if you're using Android support library, you should possibly also set
- @null
– goRGon Sep 05 '14 at 21:51