I've implemented up navigation to my Navigationdrawer activity.
private void setupActionBar() {
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true);
}
}
But it doesnt sho up, I guess it's covered by the icon for opening the navigation drawer.
Question:
How can I position the up navigation icon either next to the drawer activity or on the right of the toolbar?icon
Try below code: to add your
customBack arrow icon inactionbarRight side...