I've been trying to use RoboGuice and fragments with no luck. I have a fragment that extends RoboFragment
, and an activity that extends RoboActivity
, but it seems that within the RoboActivity
, the method getFragmentManager
is incompatible with RoboFragment
.
It looks like RoboFragment
extends android.support.v4.app.Fragmentment
but getFragmentManager
requires android.app.Fragment
.
How is this meant to work?