In Android Studio, I imported a project which did not include styles.xml (v21)
.
So I created a styles-v21.xml
file in the values
directory. Both styles.xml
and styles-v21.xml
are in the values
directory now.
styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="AppTheme.Base">
<!-- Customize your theme here. -->
</style>
<style name="AppTheme.Base" parent="Theme.AppCompat.Light">
</style>
</resources>
styles-v21.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="android:Theme.Material.Light.DarkActionBar">
</style>
</resources>
When I build the project I get a build error:
Error:Error: Duplicate resources: C:\xxx\main\res\values\styles-v21.xml:style/AppTheme, C:\xxx\main\res\values\styles.xml:style/AppTheme
The error is that both resource files have the same style
name: AppTheme
.
But in other projects and tutorials I've seen, these styles
have the same name. One is for Android with version 21 compatibility and the other is for Android without the compatibility.
I guess I want to know if I should simply change the name or if these files are supposed to have the same name - which means there is a bigger problem at hand. How should I proceed?
A style is defined in an XML resource that is separate from the XML that specifies the layout. This XML file resides under res/values/ directory of your project and will have <resources> as the root node which is mandatory for the style file. The name of the XML file is arbitrary, but it must use the . xml extension.
Right click on res folder, choose New --> Android resource file, set the same name for the new file "styles", in Available qualifiers: choose the last item "Version" and finally set "Platform API level" 21. Save this answer. Show activity on this post. By default, Android Studio doesn't create styles.
The difference is how you apply it: instead of applying a style with the style attribute on a view, you apply a theme with the android:theme attribute on either the <application> tag or an <activity> tag in the AndroidManifest. xml file.
xml file in the new Android Studio. Goto your project file view: Res>Values>Themes folder. Open themes. xml file change actionbar.
Right click on res folder, choose New --> Android resource file, set the same name for the new file "styles", in Available qualifiers: choose the last item "Version" and finally set "Platform API level" 21.
By default, Android Studio doesn't create styles.xml (v21). What you need to do is create a folder structure like the following:
And this is what you will get in Android Studio:
Then you can defined different AppTheme
for different API levels.
You should create styles.xml for version 21 in values-v21 folder and android studio automatically add it as styles.xml(v21)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With