I am trying to use Caldroid inside my simple HelloWorld application which previously included ActionBarSherlock
under a Maven managed structure.
As I need to use a support package for ABS and Caldroid, I want Caldroid to use the same one. Currently, it is the latest: support-v4-r7.jar
However, in Eclipse I get a fail in getChildFragmentManager()
saying the method is undefined (???) in CaldroidFragment
. Therefore, I can't continue.
Also, I don't know if I should port every class of Caldroid to extend ABS classes in order to be used correctly. For instance:
public class CaldroidFragment extends DialogFragment
to
public class CaldroidFragment extends SherlockDialogFragment
Any idea to integrate them?