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.
Solution 3:
I know that it has been too late to answer this question but it might help someone with the same problem.
Go to your java folder and click on your fragment's activity.
In the imports, replace import android.app.Fragment;
with
import android.support.v4.app.Fragment;
Keep the code in the MainActivity intact and this should help resolve the issue.
Note: If it doesn't work at once, don't worry. Build > Rebuild project.
Solution 4:
This solution works for me
replace
publicclassMyFragmentextendsFragment{
}
with
publicclassMyFragmentextendsandroid.support.v4.app.Fragment{
}
and also replace import
import android.app.Fragment;
with
import android.support.v4.app.Fragment;
Solution 5:
You can remove the support package, and that should solve your problem. It is only needed when you need functions from Android 3.0 and above in apps for earlier versions. In your case you get both the default Fragments from ICS, and the Fragments from the support package, and if you happen to get objects from the different packages they will not work together.
Short version; You use either an api level above Honecomb or the support package, not both.
Post a Comment for "Cannot Convert From Android.support.v4.app.fragment To Android.app.fragment"