I\'m struggling with this error and I really can\'t get it right. I try to import android.support.v13.app.FragmentActivity; into a class but it gives me the error: The impo
This is the answer I gave to a very similar question:
Change the "import android.support.v13.app.FragmentActivity" to "import android.support.v4.app.FragmentActivity"
For the undefined part, try this syntax:
public class ScreenSlidePagerAdapter extends FragmentStatePagerAdapter {
public ScreenSlidePagerAdapter (android.support.v4.app.FragmentManager fm) {
super(fm);
}
and:
@Override
public android.support.v4.app.Fragment getItem(int position) {
return ScreenSlidePagerAdapter.create(position);
}