Theme.MaterialComponents.DayNight 未找到
Theme.MaterialComponents.DayNight not found
在我的 build.gradle 中,我包含了 material 设计库(版本 1.1.0),但是在 styles.xml
中,当我尝试使用 Theme.MaterialComponents.DayNight
时,它说cannot resolve symbol
。 DayNight 主题不是已经在 material 设计库 1.1.0 中实现了吗?请帮忙。谢谢
使用最新版本
implementation 'com.google.android.material:material:1.2.0-alpha03'
style.xml
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
在我的 build.gradle 中,我包含了 material 设计库(版本 1.1.0),但是在 styles.xml
中,当我尝试使用 Theme.MaterialComponents.DayNight
时,它说cannot resolve symbol
。 DayNight 主题不是已经在 material 设计库 1.1.0 中实现了吗?请帮忙。谢谢
使用最新版本
implementation 'com.google.android.material:material:1.2.0-alpha03'
style.xml
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>