不需要的标题栏 android

Unwanted Title bar android

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

我无法删除这个

我试过了

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

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

//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); 

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

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

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

这不是标题栏。这是 ActionBar 或工具栏。您应该从 Theme.AppCompat.NoActionBar 扩展您的应用程序主题。或者只需将 android:theme="@style/Theme.AppCompat.NoActionBar" 添加到 AndroidManifest.xml

中的 <application/> 标签