Hide or remove Action Bar on specific Activity | Android

后端 未结 6 2070
深忆病人
深忆病人 2020-12-16 12:33

How I can remove Action Bar on specific activity not for all application, for example I have Sign Up activity and for this activity I want to remove Action Bar

6条回答
  •  萌比男神i
    2020-12-16 13:31

    If you have an ActionBar, you can use getActionBar().hide();
    If you have a SupportActionBar, you can use getSupportActionBar().hide();

提交回复
热议问题