I have the same standard options menu, but I want to change the background of the items from white to black. I\'ve seen many postings about how to do it, but those don\'t wo
See if following solution solves your problem....
AndroidMenifest.xml
menu/options.xml
styles.xml
#000FFF
StackoverflowActivity.java
public class StackoverflowActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.options, menu);
return true;
}
}
