问题:
新建一个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.DarkActionBar
是Base
的一个子类, 也就是Theme.AppCompat.Light.DarkActionBar
继承了Base
所以styles.xml
需要修改
转载自: ERROR :rendering problems The following classes could not be found android.support.v7.internal.widget.ActionBarOverlayLayout