[转载] Android Studio Rendering Problems "android.support.v7.internal.widget.ActionBarOverlayLayout"

时间:2022-04-15 20:49:57

Android Studio(以下简称AS) 1.2
SDK 4.0

问题:
新建一个Android项目,进入AS后没有显示 具体的手机设配,并给出提示:

The following classes could not be instantiated:
- android.support.v7.internal.widget.ActionBarOverlayLayout (Open Class, Show Exception, Clear Cache)

解决办法:
1. 打开AS 界面中,默认在AS左边的 “Project” 然后 “app->res->values->styles.xml”
2. 找到
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
将后面的"Theme.AppCompat.Light.DarkActionBar" 修改为 "Base.Theme.AppCompat.Light.DarkActionBar" 回到AS中的activity_main.xml即可正常显示手机设备了;

原因:
如果此时按 crtr+鼠标左键点击 Theme.AppCompat.Light.DarkActionBar AS会显示它的source:

<style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/>

我们发现Theme.AppCompat.Light.DarkActionBarBase 的一个子类, 也就是 Theme.AppCompat.Light.DarkActionBar继承了Base 所以styles.xml需要修改

转载自: ERROR :rendering problems The following classes could not be found android.support.v7.internal.widget.ActionBarOverlayLayout
回答者:eee