How can i add dividers to split action bar

128 Views Asked by At

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?

1

There are 1 best solutions below

1
On BEST ANSWER

Use a view widget as an alternative to actionbar divider.

<View 
  android:layout_width="match_parent"
  android:layout_height="1dp"
  android:background="#000000" />