I know how to style the DrawerArrowToggle's Back Arrow icon from here
But how to style the Up/Back icon (Arrow) as I don't use DrawerLayout.
Thanks.
I know how to style the DrawerArrowToggle's Back Arrow icon from here
But how to style the Up/Back icon (Arrow) as I don't use DrawerLayout.
Thanks.
You can use ActionBar to change icon with this method.
ab.setDisplayHomeAsUpEnabled(true);
ab.setHomeAsUpIndicator(R.drawable.ic_back_arrow);
ab.show();
with this you can set back icon whatever u want.