I have developer the whole my project with

import android.app.FragmentManager;
import android.app.FragmentTransaction;

and using Tabs with ActionBar. Now i need to swipe between tabs. I have seen many examples even the sample project of Android, but all imports they used are with support.v4.app and hence they can use FragmentPagerAdapter. My min sdk is 14. Is there any way to use FragmentPagerAdapter in my project or any alternative for Viewpager. I have gone through some of related post like : FragmentPagerAdapter Exists Only In Android.Support.V4.App (and not Android.App)

Problems with FragmentPagerAdapter

When i import android.support.v13.app.FragmentPagerAdapter., it couldn't be resolved.

有帮助吗?

解决方案

You could copy the source code and make necessary changes to use the non-support versions of the classes referenced in FragmentPagerAdapter (like Fragment). It should be enough to just change the imports to the non-support versions of those classes.

其他提示

Import the library android-sdk\extras\android\support\v13\android-support-v13.jar There is everything you need.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top