the following classes could not be found android.support.v7.internal.

来源:互联网 发布:六年级英语软件 编辑:程序博客网 时间:2024/06/15 21:34

打开XML的界面时候显示

rendering problems: the following classes could not be found android.support.v7.internal.....。


后来发现http://stackoverflow.com/questions/33742114/the-following-classes-could-not-be-found-android-support-v7-internal-app-window

可以解决问题。


1. 打开res文件夹下的style.xml文件

2. 把

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
替换成
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
问题解决。
希望对其他朋友有帮助

0 0