How can I add a white arrow or just any icon on the left side instead of the homebutton arrow.
1 answer
In your styles.xml you can write:
<style name="AppTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar"> <item name="actionBarStyle">@style/MyActionBar</item> </style> <style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar"> <item name="homeAsUpIndicator">@drawable/сюда желаемую картинку</item> </style> Then in your activism:
ActionBar actionBar = getSupportActionBar(); if (actionBar != null) { actionBar.setDisplayHomeAsUpEnabled(true); actionBar.setHomeButtonEnabled(true); } - if necessary for toolbar, toolbar.setNavigationIcon (); - J Mas
|