我已经创建了一个应用程序。有一个登录活动,因此我只想在运行时删除操作栏。 我该怎么办???
请参见
您可以在图像的蓝色操作栏中看到。我只想删除它。
谢谢
答案 0 :(得分:1)
如果您使用的是AppCompatActivity,则可以执行以下操作:
// to hide the action bar
getSupportActionBar().hide();
// to show the action bar
getSupportActionBar().show();
如果您正在使用“活动”,则可以执行操作:
// to hide the action bar
getActionBar().hide();
// to show the action bar
getActionBar().show();
注意:仅您的这项工作与Action Bar
一起使用主题。