Android Studio 渲染问题(无预览)
Android Studio Rendering Problems (No preview)
我刚刚安装了 Android Studio,我是应用程序编程的初学者。首次启动 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
此错误可能是什么原因造成的,我应该如何解决?
在 res/values/styles.xml 中更改 AppTheme parent 解决了这个问题。替换
<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 级
我刚刚安装了 Android Studio,我是应用程序编程的初学者。首次启动 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
此错误可能是什么原因造成的,我应该如何解决?
在 res/values/styles.xml 中更改 AppTheme parent 解决了这个问题。替换
<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 级