Cannot switch to Holo Dark theme

android

Solution

Make sure you have this declared in values-v14/styles.xml

<style name="AppTheme" parent="android:Theme.Holo" />

Problem

I'm making an app which would look cool with the Holo Dark theme. I've set the XML to this: ``` <style name="AppTheme" parent="android:Theme.Holo" /> ``` It still doesn't work. Am I missing something?

Original source