Ive followed the instructions on how to change color , but the program produces this error:
06-29 19: 20: 39.416 7041-7041 / com.example.lucerne.adapter_example_2 E / AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.lucerne.adapter_example_2, PID: 7041
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.lucerne.adapter_example_2/com.example.lucerne.adapter_example_2.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
Currently, style.xml is as follows:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
What causes the error, and how can I change the colors to something else?

source
share