Cannot convert from android.support.v4.app.Fragment to android.app.Fragment
Solution 1:
Try to use getSupportFragmentManager()
instead getFragmentManager()
Solution 2:
Whats going on here?
While the Android Support package gives you a backwards-compatible Fragment
implementation, the ActionBar
is not part of the Android Support package. Hence, ActionBar.TabListener
is expecting native API Level 11 Fragment
objects. Consider using ActionBarSherlock to have both an action bar and Android Support fragments.
but then I'm left with another problem in my FragmentPagerAdapter
The FragmentPagerAdapter
in the Android Support package is a bit messy -- it wants API Level 11 Fragment
objects, not Android Support Fragment
objects. However, you can clone the source to FragmentPagerAdapter
(source is in your SDK) and create your own implementation that uses the support.v4
flavor of Fragment
and kin.