In my app i finally decided to get rid of ActionBarSherlock. In order to do that i had to fix some of my styles. When compiling app with styles like this:
<style name="Theme.MyApp" parent="@android:style/Theme.Holo">
<item name="android:actionDropDownStyle">@style/MyAppDropDownStyle</item>
</style>
<style name="MyAppDropDownStyle" parent="@android:style/Widget.Holo.Spinner.DropDown.ActionBar">
<item name="android:popupBackground">@color/my_color</item>
</style>
IntelliJ Idea throws error Error:(50, -1) android-apt-compiler: [MyApp] C:\SLI\Repo\Android\MyApp\res\values\themes.xml:50: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Spinner.DropDown.ActionBar'.
. IntelliJ can find this resource by "Go to > declaration" option. Any idea how to fix this error? Thanks in advance.