How to specify the background color of the context Menu
问题 I use a context menu in an android App to prompt the user to select a Filter. The relevant code is: TextView someView = (TextView) findViewById(id.some_view); registerForContextMenu(someView); ... @Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) { super.onCreateContextMenu(menu, v, menuInfo); menu.setHeaderTitle("Select a Filter"); menu.add(0, 0, 0, "Filter1"); menu.add(0, 1, 1, "Filter2"); menu.add(0, 2, 2, "Filter3"); } @Override