Although I'm using dark action bar, back arrow color is black.
I declared theme as below in manifest :
android:theme="@style/Theme.AppCompat.Light.DarkActionBar
Back arrow color should be white. How can I do this ?
Although I'm using dark action bar, back arrow color is black.
I declared theme as below in manifest :
android:theme="@style/Theme.AppCompat.Light.DarkActionBar
Back arrow color should be white. How can I do this ?
One option is to set your own indicator
<style name="Example.Theme" parent="@android:style/Theme.Holo.Light" >
<item name="android:homeAsUpIndicator">@drawable/up_indicator</item>
</style>