Does anybody know how to set padding between the ActionBar\'s home icon and the title?
You can change drawableSize of your DrawerArrow like this:
It isn't correct answer, because you can't choose padding side and DrawerArrow icon scaling when change drawableSize (drawableSize = width = height). But you can margin from left. To margin from right do
findViewById(android.R.id.home).setPadding(10, 0, 5, 0);