How to hide option menu?

前端 未结 2 489
慢半拍i
慢半拍i 2021-02-05 04:43

I am using option selected menu item, attached three item (share, login, logout) am select login item, go login activity login social sign (Facebook or google) any one, if login

2条回答
  •  北海茫月
    2021-02-05 05:47

    In your Activity after successful login take handle of the menuItem in ActionBar and change it's visibility state

    getMenu().findItem(R.id.login_menu_id).setVisible(false);
    

    If you're using Toolbar then it will be like

    toolbar.getMenu().findItem(R.id.login_menu_id).setVisible(false);
    

    So setVisible(boolean) will change the visibility of a menuItem. Hope this helps

提交回复
热议问题