The following code causes a back arrow to appear in the ActionBar:
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
I'm looking for the resource ID of the arrow drawable, i.e. android.R.drawable.xxx. The reason I need this ID is so that I can manually set an identical arrow (size & colour) elsewhere in my app.
I tried making my own drawable and using that but the size was different from the one in the ActionBar.
If you need to use the default back arrow of Android SDK and also with AndroidX then you can reach it with the following
Additionally, if you are planning to use it for a custom toolbar then you can set it like this
And if you need to set click listener