ActionbarSherlock in Android Studio

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

+4
source share
1 answer

Maybe you should import a new module for ActoinBarSherlock from a subdirectory named library not root directory.

-2
source

Source: https://habr.com/ru/post/1481197/


All Articles