How to hide action bar for fragment?

前端 未结 9 1184
挽巷
挽巷 2021-01-31 08:17

How can I hide action bar for certain fragment? I have searched for the answer at stackoverflow, but I have only found a solution, which involves disabling action bar for main a

9条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-31 09:09

    Hide actionBar using this in the required fragment.

    getActivity().getSupportActionBar().hide();
    

    And Show actionBar with this in your next fragment.

    getActivity().getActionBar().show();
    

提交回复
热议问题