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

<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>

以下是模拟器的屏幕截图:
android - Android Material Design-即使将windowActionBar设置为false并将windowNoTitle设置为true,ActionBar和Title仍可见-LMLPHP

最佳答案

检查activity\u main.xml文件。android studio的默认布局通常会在每个布局中手动添加一个工具栏,即使你的应用主题说没有。

09-19 15:19