我正在尝试在操作栏项目上创建一个弹出窗口(如 G+ 应用程序中的那个)。
为此,我需要有操作栏项目视图,但这仅适用于设置自定义视图setActionView()
。
问题是我无法达到与操作栏项相同的菜单项样式。
我正在使用这个:
<Button xmlns:android="http://schemas.android.com/apk/res/android"
style="?android:attr/actionButtonStyle"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:paddingLeft="12dp"
android:paddingRight="12dp"
android:background="@drawable/ic_refresh">
但结果并不好。
我在哪里可以找到一种布局/样式来模仿操作栏项目之一?