How can I change the app to holodark theme?

Asked 1 years ago, Updated 1 years ago, 76 views

<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?

android themes

2022-09-22 14:15

1 Answers

parent="android:Theme.Holo.Dark"Change this to parent="android:Theme.Holo". You can just say holo for the dark theme.


2022-09-22 14:15

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.