如何为工具栏创建弹出项目菜单(支持v7)?
screenshot of transparent toolbar's popup menu (MX Player)
我发现了如何制作透明背景:
来自布局
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/MyToolbarTheme"/>
来自风格的
<style name="ToolbarTheme" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="android:colorBackground">@color/my_transparent_color</item>
</style>
但如何添加边框?
P.S。使用形状android:background
会在各处造成很多形状
<item name="android:background">@drawable/background_with_borders</item>