更改菜单项的文本颜色

时间:2013-03-05 09:48:48

标签: android android-menu

我不知道菜单文字的颜色变化。它是默认的白色。而我正试图改变RED。这是我的代码: -

 MenuInflater menuInflater = getMenuInflater();
            menuInflater.inflate(R.layout.menu, menu);
            getLayoutInflater().setFactory(new Factory() {
                 public View onCreateView(String name, Context context,
                AttributeSet attrs) {

                if (name     .equalsIgnoreCase("com.android.internal.view.menu.IconMenuItemView")) {
                try {
                LayoutInflater f = getLayoutInflater();
                final View view = f.createView(name, null, attrs);

                new Handler().post(new Runnable() {
                public void run() {

                // set the background drawable
            //  view     .setBackgroundResource(R.drawable.my_ac_menu_background);

                // set the text color
                ((TextView) view).setTextColor(Color.RED);
                }
                });
                return view;
                } catch (InflateException e) {
                } catch (ClassNotFoundException e) {
                }
                }
                return null;
                }


                });
                return super.onCreateOptionsMenu(menu);

但这不起作用。 FACTORY IS返回NULL值。

请任何一个人看。

谢谢

0 个答案:

没有答案