hello :) I want to change my app so it will have the Material theme, so .. I installed the new adt, updated all on sdk manager, and did this stuff:
I opened a new file - /res/values/styles.xml and used there this code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- your app's theme inherits from the Material theme -->
<style name="AppTheme" parent="android:Theme.Material">
<!-- theme customizations -->
</style>
</resources>
And at the AndroidManifest I used this code:
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="20" />
at the styles.xml I get this error:
"error: Error retrieving parent for item: No resource found that matches the given name 'android:Theme.Material'."
what do I need to change?
Please try following
It will solve your problem.