After importing ABS to Android studio, I can import and use all classes from ABS, for example, SherlockFragment, etc.
But there was a problem only with a custom theme.
I want to create a custom theme, for example:
<style name="Theme.Styled" parent="Theme.Sherlock"> <item name="actionBarStyle">@style/Widget.Styled.ActionBar</item> <item name="android:actionBarStyle">@style/Widget.Styled.ActionBar</item>
But android studio received an error notification:
The resource "Theme.Sherlock" was not found.
Any solution? thanks
source share