gpt4 book ai didi

android - 如何在 ActionBar 中的菜单项之间添加分隔符?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:10:00 26 4
gpt4 key购买 nike

如何在 ActionBar 中的菜单项之间添加分隔符,就像在 Gmail 应用程序中一样?

enter image description here

最佳答案

当我试图制作自己的操作栏时,我使用了一个黑色的 FrameLayout,其中将显示操作栏的所有项目。我将每个项目的 layout_margin 属性设置为 1dp,这样它看起来就像两边都有一个黑色分隔符 - 如果你想让它更大,你可以增加边距。

<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>

关于android - 如何在 ActionBar 中的菜单项之间添加分隔符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7189385/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com