Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Couldn't resolve resource @style/Widget.Holo.Light.ActionMode.Inverse

I'm creating an Android app in Android Studio. When I open the layout editor, I see that gray "popup window" on top of the layout, which says that it

Couldn't resolve resource @style/Widget.Holo.Light.ActionMode.Inverse.

This happens when I change the "rendering version" to API 15 (Android 4.0.3).
It worked a minute ago, but when I switched back to the layout, I just got this error.

Edit: I use the AppCompat library.
The theme is defined like this

<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar" />

The app works fine when I run it, but doesn't render correctly (at least it's giving me the error) in the editor.

I would be glad if someone could help me with this. Thanks!

like image 348
Daniel Kvist Avatar asked Feb 27 '15 17:02

Daniel Kvist


2 Answers

This problem occured to me when updating Android Studio to version 1.1.0 and opening an old project without changing anything.

For me only changing the preview's rendering API to 19 or above makes the message disappear.

like image 135
futu Avatar answered Nov 17 '22 05:11

futu


Hey I faced the same problem and the solution that i figured out was - In android studio Open the Select Theme Dialog and under the All category select NoTitleBar.OverlayActionModes and press okay. The problem would be solved. But it can show up into a dark theme.

like image 43
amanpurohit Avatar answered Nov 17 '22 07:11

amanpurohit