-1

我已使用以下代码成功自定义选项菜单的背景。

getLayoutInflater().setFactory(new Factory() {
    @Override
    public View onCreateView(String name, Context context, AttributeSet attrs) {
        if (name.equalsIgnoreCase("com.android.internal.view.menu.IconMenuItemView")) {
            try { // Ask our inflater to create the view
                LayoutInflater f = getLayoutInflater();
                final View view = f.createView(name, null, attrs);
                /*
                 * The background gets refreshed each time a new item is
                 * added the options menu. So each time Android applies
                 * the default background we need to set our own
                 * background. This is done using a thread giving the
                 * background change as runnable object
                 */
                new Handler().post(new Runnable() {
                    public void run() {
                        view.setBackgroundResource(R.drawable.blue_bg_pixel);
                    }
                });
                return view;
            }
            catch (InflateException e) {
            }
            catch (ClassNotFoundException e) {
            }
        }
        return null;
    }
});

现在我必须自定义菜单大小、文本大小/颜色。任何人请帮助我。

提前致谢。

4

2 回答 2

0

Width , Heigth 你需要破解操作栏。

但如果您需要自定义,请使用:ActionBarGenerator ( http://jgilfelt.github.io/android-actionbarstylegenerator/ )

于 2014-06-13T22:43:02.090 回答
0

这在 Android 2.3 上失败

请参阅 http://code.google.com/p/android/issues/detail?id=4441#c6更改 android 2.3 上的菜单背景颜色

详情

于 2011-04-13T09:12:42.977 回答