Simon Fredrich
Simon Fredrich

Reputation: 95

android studio render error with layout

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

Answers (1)

mehdi musavi
mehdi musavi

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

Related Questions