Android Studio渲染问题(无预览)

时间:2015-09-01 09:52:50

标签: android android-studio rendering

我刚刚安装了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

导致此错误的原因可能是什么?我应该如何解决?

1 个答案:

答案 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

enter image description here