简体   繁体   中英

Add icon near hamburger to navigation drawer

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

在此处输入图片说明

I would get this result:

在此处输入图片说明

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);

将此放在您的小部件中

android:drawableRight="@drawable/image"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM