I'm using navigation drawer in my application. I want to get rid of the android's robot icon from the action bar. I'm using the following lines but the logo is not disappearing.
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayUseLogoEnabled(false);
actionBar.setDisplayShowTitleEnabled(false);
Can anyone suggest me what should I do?