Missing Styles error

1

I need someone to help me: I'm starting to learn how to program in Android Studio and I just installed version 2.2.3. I used to have version 1.3 and everything was super good until I changed the version. When I open a new project I get this:

After removing the dependencies and when I go to the Activity I have another problem:

  

"Missing styles. Is the correct theme chosen for this layout?"

I need someone to recommend me something. I searched but I could not fix it.

    
asked by Yeikel200 02.03.2017 в 17:39
source

2 answers

0

I see you have a Theme called "Black", I recommend you select an existing theme, for example MainTheme :

    
answered by 02.03.2017 / 18:22
source
1

Add this dependency to your build.gradle :

dependencies {
     compile 'com.android.support:appcompat-v7:25.0.1'
}
    
answered by 02.03.2017 в 17:43