Android studio新建项目xml文件不显示Preview问题解决方法
报错如下:
1、The following classes could not be instantiated:
2、The following classes could no
3、Failed to load AppCompat ActionBar with unknown error.
找到values文件夹下面的styles.xml打开
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"><!-- Customize your theme here. --><item name="colorPrimary">@color/colorPrimary</item><item name="colorPrimaryDark">@color/colorPrimaryDark</item><item name="colorAccent">@color/colorAccent</item>
</style>
把DarkActionBar改为NoActionBar。再Rebuild Project即可
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"><!-- Customize your theme here. --><item name="colorPrimary">@color/colorPrimary</item><item name="colorPrimaryDark">@color/colorPrimaryDark</item><item name="colorAccent">@color/colorAccent</item>
</style>