手动设置选项菜单面板的背景颜色

时间:2013-09-04 09:40:42

标签: android background-color android-optionsmenu

我注意到在更高版本的设备中,选项菜单的背景颜色默认设置为黑色。我需要将其更改为白色,以及将文本颜色更改为黑色。

我用Google搜索并找到了很多答案,但这些答案对我来说似乎都没用。

我尝试的建议是在我的onCreateOptionsMenu中添加:

getLayoutInflater().setFactory(new Factory() {
@Override
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     .setBackgroundColor(Color.BLACK);

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

但是,它并没有帮助我。

1 个答案:

答案 0 :(得分:0)

我正在搜索stackoverflow,我想我找到了一个匹配的问题答案。

请仔细阅读此链接...

<强> Set title background color