0

我想删除应用程序的标题栏,该标题栏用应用程序的名称用完。

已遵循示例,但始终给出错误初始化:
示例 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" >
4

1 回答 1

1

this works for me:

in style.xml:

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

in AndroidManifest.xml

<application
    android:theme="@style/AppTheme" 
    ...>
于 2015-04-16T00:58:23.370 回答