LoginSignup
3
4

More than 5 years have passed since last update.

Android StudioでRendering Problemsが出たときにした対応

Last updated at Posted at 2016-05-12

エラー内容は以下

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

対応内容

styles.xmlを修正

修正前

<style name="BaseAppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
</style>

修正後

<style name="BaseAppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
</style>
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4