-1

Actually I have this hamburger icon in my navigation drawer auto generated by eclipse:

enter image description here

I would get this result:

enter image description here

Slaiv206
  • 309
  • 2
  • 14
  • I think this one will help you [enter link description here](https://stackoverflow.com/questions/38373481/remove-large-padding-after-hamburger-menu-icon-in-android-toolbar) – Rajesh Naddy May 31 '17 at 07:56

2 Answers2

2

First thing, always show what you have tried resolve your query.
Second to answer this, try

ActionBar actionBar = getSupportActionBar();
actionBar.setLogo(R.drawable.ic_launcher);
actionBar.setDisplayUseLogoEnabled(true);
actionBar.setDisplayShowHomeEnabled(true);
Ankit Bansal
  • 1,801
  • 17
  • 34
0

place this in your widget

android:drawableRight="@drawable/image"
Sandeep Kumar
  • 350
  • 4
  • 18
  • Welcome to Stack Overflow! Please quote the most relevant part of the link, in case the target site is unreachable or goes permanently offline. See [How do I write a good answer](http://stackoverflow.com/help/how-to-answer). – Maveňツ Apr 22 '15 at 10:49