如何在运行时在Android应用程序中隐藏(或删除)操作栏

时间:2018-09-06 16:25:27

标签: java android android-actionbar

我已经创建了一个应用程序。有一个登录活动,因此我只想在运行时删除操作栏。 我该怎么办???

请参见Screenshot

您可以在图像的蓝色操作栏中看到。我只想删除它。

谢谢

1 个答案:

答案 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一起使用主题