Ethan
Ethan

Reputation: 1266

ActionBarSherlock API?

Hi I'm trying to figure out how to convert my UI to ActionBarSherlock, but I haven't been able to find any sort of public API for it....is there one?

I'm especially interested in the methods that provide access to fragments and the actionbars for compatibility with older versions of Android (pre 3.0)

Upvotes: 0

Views: 904

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007533

The usage documentation for ActionBarSherlock is available online. It has an "Action Bar API" section with statements like:

The API exposed by the ActionBar instance is an exact duplicate of that which the native method exposes. Refer to its documentation as well as the articles on how to utilize its functionality in the "Related Links" section.

 

I'm especially interested in the methods that provide access to fragments

ActionBarSherlock does not "provide access to fragments". It uses the Android Support package as the backport of fragments.

Upvotes: 2

Related Questions