即使将windowActionBar设置为false并将windowNoTitle设置为true,Android Material Design- ActionBar和Title也可见

时间:2016-01-17 18:07:55

标签: android material-design android-styles

我正在尝试材料设计。我在样式中创建了一个主题MyMaterialTheme

样式:

<resources>
    <!-- Theme for the material design of the app -->
    <style name="MyMaterialTheme" parent="MyMaterialTheme.Base"></style>

    <style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
        <item name="colorPrimary">@color/colorPrimaryApp</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDarkApp</item>
        <item name="colorAccent">@color/colorAccentApp</item>

    </style>
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

在我的AndroidManifest.xml中,我包含了这个主题(MyMaterialTheme)。我可以确认我的主题是应用的,因为它采用了正确的颜色。我已经将windowActionBar指定为false,将windowNoTitle指定为true,但是当我运行应用程序时,我仍然看到ActionBar和标题。谁能指出我哪里出错?

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/MyMaterialTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name">
           <!-- android:theme="@style/AppTheme.NoActionBar"> -->
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

以下是模拟器的屏幕截图:

2 个答案:

答案 0 :(得分:2)

检查您的activity_main.xml文件。 Android Studio的默认布局通常会手动添加到每个布局的工具栏,即使您的应用主题说没有。

答案 1 :(得分:0)

你的材质风格扩展它的基本样式应该是noTitlebar,就像这段代码一样

parent="Theme.AppCompat.Light.NoActionBar"