标题有效,但windowNoTitle = false

时间:2019-06-01 16:09:52

标签: android styles

我在资源中的风格

<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

清单

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:ignore="GoogleAppIndexingWarning">...

我使用的是操作栏,其中标题(如TextView)具有重心 在我的actionBar中启动应用程序时 enter image description here

为什么工具栏中存在标题?在样式windowNoTitle = true;

0 个答案:

没有答案