【AndroidStudio】新規作成したアプリケーションのデザイン画面でエラー

何も始めていない状態で出たので当惑。エラーメッセージおよび画面は以下。

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

f:id:taka_say:20150603160346p:plain

環境

AndroidStudio v1.2.1.1

解決策

res/values/styles.xml内の<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">を修正すればOK。

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

f:id:taka_say:20150603160817p:plain

というわけで無事解決!

参考

android.support.v7.internal.widget.ActionBarOverlayLayout could not be instantiated - Stack Overflow