How can I change the Options menu background for Android 2.3?

前端 未结 6 975
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-15 11:18

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

6条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-15 11:46

    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;
        }
    
    }
    

    Output

提交回复
热议问题