-1

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.

Community
  • 1
  • 1
calvincc
  • 21
  • 2

1 Answers1

1

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.

Dharmesh Baldha
  • 820
  • 6
  • 11