FragmentPagerAdapter 无法解析为类型
我正在尝试遵循 Google 的教程,使用兼容性包实现带有片段的 ViewPager,如下所述:http://android-developers.blogspot.com/2011/08/horizontal-view-swiping-with-viewpager.html
我添加了兼容性包,我可以创建扩展 Fragment 的类并将 ViewPager 添加到我的 XML 布局中,但是当我尝试创建扩展 FragmentPagerAdapter 的适配器类时,Eclipse 似乎不知道那是什么。我缺少什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请使用此页面上的以下说明: http://developer.android.com /training/basics/fragments/support-lib.html,
只需添加库 android-support-v4.jar 即可。对不起我的英语,我最近在学习
Use the following instructions on this page: http://developer.android.com/training/basics/fragments/support-lib.html,
just a matter of adding the library android-support-v4.jar. sorry for my English, I'm learning recently
因此,我通过在连接到不同网络的另一台计算机上下载兼容性库(与以前相同,通过 Eclipse 中的右键单击菜单),然后将生成的 android-support-v4.jar 复制回原装电脑。
新文件大小约为 137k,而我的本地 Eclipse 版本则为 104k。我不确定差异从何而来,但我最好的猜测是,我锁定的公司互联网访问阻止了库中的选定文件,给我留下了不完整的版本。
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.