android option menu with icon

前端 未结 9 1262
借酒劲吻你
借酒劲吻你 2021-02-05 08:36

How to show icon with option menu.I have tried the following code but my option menu is without image icon.I am using android version 4.0 for developing app.

Jav

9条回答
  •  感动是毒
    2021-02-05 08:53

    You can create a custom menu like this:

    
    
        
    
    

    And then inflate it

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.my_menu, menu);
        return true;
    }
    

    More on this here: http://developer.android.com/guide/topics/ui/menus.html#options-menu

提交回复
热议问题