不需要的标题栏android

时间:2015-05-15 08:50:16

标签: android titlebar

我想删除这个不需要的标题栏

enter image description here

我无法删除此

我试过了

 this.requestWindowFeature(Window.FEATURE_NO_TITLE);
        this.getWindow().setFlags(
                WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);

3 个答案:

答案 0 :(得分:4)

这不是标题栏。这是ActionBar或工具栏。您应该从<form method="post" action="example4.php" id="frmOrderDetailsGraphic" class="" autocomplete="off" enctype="multipart/form-data"> 扩展您的应用主题。或者只需在Theme.AppCompat.NoActionBar

中将android:theme="@style/Theme.AppCompat.NoActionBar"添加到<application/>标记即可

答案 1 :(得分:1)

将以下内容添加到您的清单中:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

应该对它进行排序,如果需要,将主题替换为您的实际主题,此行在清单的application部分内,或者可以在声明活动的位置。

答案 2 :(得分:0)

您需要在写完两行后设置内容视图

//Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);

//Remove notification bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

//set content view AFTER ABOVE sequence (to avoid crash)
this.setContentView(R.layout.layout_name);