如何删除我的应用程序的标题栏?

How do I remove the title bar of my app?

我想删除应用程序的标题栏,即 运行 从带有应用程序名称的黑色标题栏中删除。

按照示例进行操作,但总是出现初始化错误:
示例 1

 <application 
        android:icon="@drawable/icon" 
        android:label="@string/app_name" 
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen">

示例 2

android:theme="@android:style/Theme.DeviceDefault.NoActionBar.Fullscreen"

我的XML

  <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

这对我有用:

在style.xml中:

<style name="AppTheme" parent="android:Theme.NoTitleBar">
</style>

在AndroidManifest.xml

<application
    android:theme="@style/AppTheme" 
    ...>