<style name="AppTheme" parent="android:Theme.Holo.Light" />
I changed the code above as below to change it to holodark theme
<style name="AppTheme" parent="android:Theme.Holo.Dark" />
error: Error retrieving parent for item: No resource found that matches the given name 'android:Theme.Holo.Dark'.
That's the error.
What should I do?
parent="android:Theme.Holo.Dark"
Change this to parent="android:Theme.Holo"
.
You can just say holo for the dark theme.
© 2025 OneMinuteCode. All rights reserved.