SunnyWeather icon indicating copy to clipboard operation
SunnyWeather copied to clipboard

关于主题的疑问

Open hellozjf opened this issue 11 months ago • 0 comments

根据《第一行代码(第三版)》第15.3小节 搭建MVVM项目架构,书中有一句话

由于我们引入了Material库,所以一定要记得将AppTheme的parent主题改成 MaterialComponents模式,也就是将原来的AppCompat部分改成MaterialComponents即 可。

但是我看了实际项目中的代码,app/src/main/res/values/styles.xml,它的代码如下

<resources>

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

</resources>

也就是说parent主题并没有使用 MaterialComponents,想咨询一下是书上描述写错了,还是代码写错了?

hellozjf avatar Jan 24 '25 10:01 hellozjf