我刚刚安装了Android Studio,而且我是app编程的初学者。我第一次启动Android Studio时出现以下错误。
Rendering problems
The following classes could not be found
- android support.v7.internal.widget.ActionBarOverlayLayout (Fix_Build_Path, Edit_XML, Create_Class)
Tip: Try to build the project
导致此错误的原因可能是什么?我应该如何解决?
答案 0 :(得分:0)
更改 res / values / styles.xml 中的AppTheme父级解决了此问题。取代
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
与
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
在预览窗格
中将API级别从22降级到21