I'm trying to follow Google's tutorial for implementing a ViewPager with Fragments using the Compatibility Package as described here: http://android-developers.blogspot.com/2011/08/horizontal-view-swiping-with-viewpager.html

I added the Compatibility Package and I can create classes that extend Fragment and add a ViewPager to my XML layout, but when I try to create an adapter class that extends FragmentPagerAdapter Eclipse doesn't seem to know what that is. What am I missing?

link|improve this question

1  
Did you try to import it in your new class? – kabuko Nov 23 '11 at 21:56
Yes. Eclipse tells me that android.support.v4.app.FragmentPagerAdapter doesn't exist when I add an import line for it. It does find nine classes inside the android.support.v4.app namespace, but FragmentPagerAdapter isn't among them. – chefgon Nov 28 '11 at 14:43
and you're sure you have the latest r4 version of the compatibility package? – kabuko Nov 28 '11 at 18:17
I think so. I just right-clicked on my project and said "Add Compatibility Library" so as long as the repository is serving up the latest files then that's what I have. If it's relevant, I'm running version 14 of the Android Development Tools on Eclipse Helios Service Release 2. – chefgon Nov 28 '11 at 18:35
feedback

1 Answer

up vote 1 down vote accepted

So I fixed this problem by downloading the Compatibility Library on another computer attached to a different network (the same way as before, through the right-click menu in Eclipse) and then copying the resulting android-support-v4.jar back over to the original computer.

The new file was about 137k versus the 104k version that my local version of Eclipse was getting. I'm not sure where the discrepancy comes from, but my best guess is that my locked-down corporate internet access was blocking select files from the library and leaving me with an incomplete version.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.