Android Studio 新建项目无法查看布局文件的问题

Android Studio 新建项目出现的问题,最新版的AndroidStudio新建项目后可能在layout布局文件中预览不了我们写的布局报下面错误

 Rendering Problems The following classes could not be instantiated:
- android.support.v7.internal.widget.ActionBarOverlayLayout (Open Class, Show Exception, Clear Cache)
 Tip: Use View.isInEditMode() in your custom views to skip code or show sample data when shown in the IDE  Exception Details java.lang.ClassNotFoundException: android.support.v7.appcompat.R$attr Copy stack to clipboard 

Android Studio 新建项目无法查看布局文件的问题_第1张图片

百度搜搜索的时候很少有类似的错误,大多说在File/Project Str8cture/app/Dependencies里面添加v7包,实际默认已经添加了。解决起来很容易最简单的方法就是修改主题,如下所示

解决方案

<resources>

    
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        -- Customize your theme here. -->
    style>
resources>


<resources>

    
    <style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
        -- Customize your theme here. -->
    style>

resources>

OK大功告成,再去看看,可以了吧。

你可能感兴趣的:(android,studio)