我创建了一个新项目,并且没有v21文件夹,所以我创建了一个,添加了"样式"文件也是,现在写完我的风格后,由于" android:"我收到了错误。前缀。
我的代码:
values / styles.xml:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="AppTheme.Base">
<!-- Customize your theme here. -->
</style>
<style name="AppTheme.Base" parent="Theme.AppCompat.Light">
<item name="colorPrimary">@color/maincolor</item>
<item name="colorPrimaryDark">@color/statusbar</item>
</style>
值-V21 / styles.xml:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="AppTheme.Base">
<!-- Customize your theme here. -->
<item name="android:colorPrimary">@color/maincolor</item>
<item name="android:colorPrimaryDark">@color/statusbar</item>
</style>
Android Studio标记&#34; android:colorPrimary&#34;和&#34; android:colorPrimaryDark&#34;作为一个错误,它说&#34;需要API级别21(当前最小值为14)&#34; 该应用程序运行,但我的风格不会显示......我做错了什么?