0

在我的应用程序中,我有选项菜单,我尝试对其进行自定义,我通过将其引用到样式来做到这一点,

我需要的是删除选项菜单周围的默认灰色边框或将其自定义为另一种颜色。

任何建议将被认真考虑 。

如下所示 :

在此处输入图像描述

我的代码:

 public boolean onCreateOptionsMenu(android.view.Menu menu) {

   MenuInflater inflater = getMenuInflater();
   inflater.inflate(R.menu.cool_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 li = LayoutInflater.from(context);
  final View view = li.createView(name, null, attrs);

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

  view .setBackgroundResource(R.drawable.border1);

  ((TextView) view).setTextSize(20); 

  ((TextView) view).setTextColor(Color.RED);
                 }
             });
   return view;  }
   catch (InflateException e) {}
   catch (ClassNotFoundException e) {}
        }
   return null; }
      });
   return super.onCreateOptionsMenu(menu);   }
4

1 回答 1

0

你试过看这个问题吗?如何更改选项菜单的背景颜色?您应该能够使用那里的大多数答案来帮助您!

于 2012-05-09T21:46:36.203 回答