Android:自定义应用程序的菜单(例如背景颜色)

时间:2009-10-20 09:45:51

标签: android customization android-menu

自定义菜单的方式(如果有办法)是什么(由手机的MENU按钮触发的菜单)。我对两件事特别感兴趣:

  • 将背景颜色从标准浅灰色更改为深灰色
  • 菜单项的对齐方式。我有4个项目,它们会自动对齐2x2,但我更愿意将它们全部放在一行(1x4)

6 个答案:

答案 0 :(得分:13)

我创建了自己的菜单类。它可能不是你想要的,但它应该有希望让你开始。这是我发布的文章和源代码的可下载链接。

http://www.codeproject.com/KB/android/AndroidMenusMyWay.aspx

答案 1 :(得分:8)

没有内置的菜单框架。

欢迎您截取MENU按钮(通过onKeyDown()或其他内容)并渲染您想要的内容,但请记住,用户希望它看起来像其他菜单在他们的设备上。

答案 2 :(得分:4)

您也可以实现“onCreateOptionsMenu”方法,该方法通常用于显示标准菜单,并在这种情况下显示您想要的任何内容。

在我的游戏中,当按下菜单按钮时,我实现了它以显示“Game Paused”对话框...

答案 3 :(得分:3)

使用样式。 这适用于Android 5.0

<style name="AppTheme" parent="android:Theme.Material.Light">
    <item name="android:colorPrimary">@color/primary</item>
    <item name="android:actionOverflowMenuStyle">@style/PopupMenu.MyStyle</item>
</style>

<style name="PopupMenu.MyStyle" parent="android:Widget.PopupMenu">
    <item name="android:popupBackground">@drawable/actionbar_item_background</item>
</style>

...然后drawable是常规选择器

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@color/primary"/>
    <item android:drawable="@color/highlighted" android:state_pressed="true"/>
</selector>

答案 4 :(得分:1)

style.xml中的背景菜单颜色 在你的主题

<item name="android:panelFullBackground">@android:color/darker_gray</item>

答案 5 :(得分:0)

This answer有效,但在使用ActionBarSherlock时崩溃了。尽管如此,这仍然是一项愚蠢的解决方法。

    // Black Vodoo! Do not try this at home.

    final LayoutInflater li = getLayoutInflater();

    final Class<LayoutInflater> clazz = LayoutInflater.class;

    try {
        final Field fieldSet = clazz.getDeclaredField("mFactorySet");
        fieldSet.setAccessible(true);
        fieldSet.setBoolean(li, false);

        li.setFactory(new Factory() {

            @Override
            public View onCreateView(final String name,
                    final Context context, final AttributeSet attrs) {
                if (name.equalsIgnoreCase("com.android.internal.view.menu.IconMenuItemView")) {
                    try {
                        final LayoutInflater f = getLayoutInflater();
                        final View view = f.createView(name, null, attrs);
                        new Handler().post(new Runnable() {
                            @Override
                            public void run() {
                                // Set the text color
                                ((TextView) view).setTextColor(Color.WHITE);
                            }
                        });
                        return view;
                    } catch (final Exception e) {
                    }
                }
                return null;
            }
        });
    } catch (final Exception e) {
        e.printStackTrace();
    }