ActionBar actionView项目样式

时间:2013-08-05 14:07:09

标签: android android-actionbar android-theme

我正在尝试在操作栏项目上创建一个弹出窗口(就像G + app中的那个)。

要执行此操作,我需要有操作栏项视图,但这仅适用于使用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">

但结果并不好。

我在哪里可以找到模仿动作栏项目的布局/样式?

1 个答案:

答案 0 :(得分:1)

解决方案是使用此布局:

    <?xml version="1.0" encoding="utf-8"?>
<ImageButton xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             style="@android:style/Widget.Holo.ActionButton"
             android:src="@drawable/ic_refresh">

</ImageButton>

使用样式@android:style/Widget.Holo.ActionButton