如何在ActionBar中的菜单项之间添加分隔符同样在Gmail应用程序中添加?
答案 0 :(得分:2)
当我尝试制作自己的操作栏时,我使用了一个黑色的FrameLayout,其中将显示操作栏的所有项目。我在每个项目上设置了1dp的layout_margin属性,所以看起来两边都有一个黑色分隔符 - 如果你想要它更大,你可以增加边距。
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#000000">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageButton ....... />
<ImageButton ...... android:layout_marginLeft="1dp"/> <!-- this will be shown as a separator-->
</LinearLayout>
</FrameLayout>