1

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

and screenshot : enter image description here

Back arrow color should be white. How can I do this ?

yusufonderd
  • 3,237
  • 4
  • 21
  • 34

1 Answers1

0

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>
mjstam
  • 1,049
  • 1
  • 6
  • 5