I am trying to use layoutDirection="rtl to set navigation button on right side.But Navigation button animated into a forward button instead of a back button.
Shows a forward button.Need a forward button here
I have already tried
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setHomeAsUpIndicator(R.drawable.ic_arrow_back_black_24dp);
toolbar.setNavigationIcon(R.drawable.ic_arrow_back_black_24dp);
and
toggle.setDrawerIndicatorEnabled(true);
EDIT I am afraid I didn't explain my question well, i am just trying to change the icon in the left direction. https://i.stack.imgur.com/6ojIb.jpg
I would greatly appreciate any feedback on this.