classes could not be found: - android.support.v7.i

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

刚刚进入studio 的小伙伴们遇到很多问题吧,这个是我曾经遇到的问题,希望能帮助大家,如果觉的有帮助您记得给个赞哦

Rendering Problems

The following classes could not be found: - android.support.v7.internal.app.WindowDecorActionBar (Fix Build Path, Create Class)

Tip: Try to build the project.

classes could not be found: - android.support.v7.i_第1张图片

解决办法:

这个问题的原因是studio成长中,Actionbar已经out了,它推荐你使用的是toolbar

解决方法1:

找到项目目录res/values/sttyles.xml,准备修改其中的AppTheme设置。
找到属性parent="Theme.AppCompat.Light.DarkActionBar改成parent="Base.Theme.AppCompat.Light.DarkActionBar",就是在原parent属性值上加“Base.”前缀。

修改成之后的截图:

classes could not be found: - android.support.v7.i_第2张图片

 

ok啦    在返回你的布局文件时候  问题就没啦

解决方法2:更改下api版本 如图  换个低版本的api就可以了

classes could not be found: - android.support.v7.i_第3张图片

 

解决方法3:跟方法一类似 ,只是把parent的值改成其他的,改成Theme.AppCompat.Light.NoActionBar

 

 

转载于:https://my.oschina.net/u/2425146/blog/546649

你可能感兴趣的:(classes could not be found: - android.support.v7.i)