Cole
Cole

Reputation: 2815

What styles does ActionBarSherlock transfer to previous Android versions?

If I'm using ActionBarSherlock, and My activity looks like this in Ice Cream Sandwich:

enter image description here

will the buttons and other elements keep Ice Cream Sandwich's style or will they revert to the Android version It's running on? (If I'm running it on 2.3, will the buttons look like standard Android 2.3 buttons, or will they still look like Android 4.0 like the picture?)

Upvotes: 0

Views: 71

Answers (1)

Jake Wharton
Jake Wharton

Reputation: 76075

ActionBarSherlock does nothing to backport any style other than that of the action bar. The only reason that it does this is to create a consistent base for styling.

Bringing back anything else would be out-of-scope for the library. Your buttons will look like gingerbread buttons on pre-Honeycomb Android. I strongly suggest you take the assets from the platform you like (such as Ice Cream Sandwich) and customize them to fit your app's look and feel and then use those on every platform.

Upvotes: 2

Related Questions