How can I remove the application icon & title which comes by default in an action bar?
There is a similar question here: Can i hide the App Icon from the Action
Try this combination
getSupportActionBar().setHomeButtonEnabled(false); getSupportActionBar().setDisplayHomeAsUpEnabled(true); getSupportActionBar().setDisplayShowHomeEnabled(false); getSupportActionBar().setIcon(R.color.transparent); getSupportActionBar().setDisplayShowTitleEnabled(true)