The application icon does not show on action bar

前端 未结 6 1771
暗喜
暗喜 2020-11-29 02:06

I followed up the instructions of building a new android project and I got a runnable one except a problem with action bar. The problem is that the application icon is not s

6条回答
  •  清酒与你
    2020-11-29 02:19

    IN Style.xml

     
    

    In activity add this and try

    ActionBar mActionBar = getSupportActionBar();
    mActionBar.setDisplayOptions(ActionBar.DISPLAY_HOME_AS_UP |
                                 ActionBar.DISPLAY_SHOW_CUSTOM |
                                 ActionBar.DISPLAY_SHOW_HOME);
    

提交回复
热议问题