我在谷歌这个主题研究了很多时间,但我的分裂动作栏仍然没有分隔线。我尝试使用选项
<item name="android:showDividers">beginning</item>
<item name="android:dividerHeight">1dp</item>
<item name="android:divider">@color/grey</item>
或
<item name="android:actionBarDivider">@android:drawable/my_divider</item>
到app主题或actionBar样式。
在developers我什么都没找到。 我该如何添加分隔符?
答案 0 :(得分:0)
使用视图小部件作为操作栏分隔符的替代方法。
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#000000" />