Android Studio Rendering Problems : The following classes could not be found

前端 未结 7 1768
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 22:22

I just update Android Studio, and when I restarted it, the preview window rendering failed, and I was told that

The following classes could not be fo

相关标签:
7条回答
  • 2020-12-07 22:35

    I have faced this issue when I introduced additional supporting libraries in my project IntelliJ IDEA

    So for me "File" -> "Invalidate Caches...", and select "Invalidate and Restart" option to fix this.

    0 讨论(0)
  • 2020-12-07 22:35

    Me helped. Try "build" project.

    0 讨论(0)
  • 2020-12-07 22:37

    You have to do two things:

    • be sure to have imported right appcompat-v7 library in your project structure -> dependencies
    • change the theme in the preview window to not an AppCompat theme. Try with Holo.light or Holo.dark for example.
    0 讨论(0)
  • 2020-12-07 22:39

    To use the class ActionBarOverlayLayout you need to include this in the dependencies section of build.gradle file:

    compile 'com.android.support:design:24.1.1'
    

    Sync the project once again and then you will find no problem

    0 讨论(0)
  • 2020-12-07 22:49

    I had to change my values/styles.xml to

        <!-- Base application theme. -->
        <style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
    

    Before that change, it was without 'Base'.

    (IntelliJ IDEA 2017.2.4)

    0 讨论(0)
  • 2020-12-07 22:55

    Please see the following link - here is where I found a solution that worked for me.

    Rendering problems in Android Studio v 1.1 / 1.2

    Changing the Android Version when rendering layouts worked for me - I flipped it back to 21 and my "Hello World" app then rendered the basic activity_main.xml OK - at 22 I got this error. I borrowed the image from this posting to show you where to click in the Design tab of the XML preview. What is wierd is that when I flip back to 22 the problem is still gone :-).

    enter image description here

    0 讨论(0)
提交回复
热议问题