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
If you have an ActionBar, you can use getActionBar().hide(); If you have a SupportActionBar, you can use getSupportActionBar().hide();
getActionBar().hide();
getSupportActionBar().hide();