0

I researched a lot of time in google this theme but my split action bar still without dividers. I try to use options

<item name="android:showDividers">beginning</item> <item name="android:dividerHeight">1dp</item> <item name="android:divider">@color/grey</item>

or

<item name="android:actionBarDivider">@android:drawable/my_divider</item>

to app theme or actionBar style.

On developers i found nothing too. How can i add divider?

DMan
  • 258
  • 3
  • 22

1 Answers1

0

Use a view widget as an alternative to actionbar divider.

<View 
  android:layout_width="match_parent"
  android:layout_height="1dp"
  android:background="#000000" />
Illegal Argument
  • 10,090
  • 2
  • 44
  • 61