Reputation: 95
I get these errors all the time and I don't know why. MainActivity
I changed nothing after the creation of the project but I don't see the basic app layout from the beginning. activity_main
PS: I am running the os manjaro on my laptop.
Upvotes: 0
Views: 30
Reputation: 418
go to res => values => styles.xml and change
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
to
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
and make project agian
Upvotes: 1