如何向 PagerAdapter 提供数据
我正在使用 this 示例来使用 ViewPager
和 PagerAdapter
。 但是,我如何向 PagerAdapter
提供来自像 CursorAdapter
这样的适配器的数据,我在其中使用 CursorLoader
加载数据?
ViewPager
上的 .setAdapter()
仅采用 PagerAdapter
。然后我想我需要在 PagerAdapter
中绑定 CursorAdapter
,但我找不到这样做的方法。
I am using this example to use a ViewPager
and a PagerAdapter
.
But how could I feed the PagerAdapter
with data from a adapter like CursorAdapter
where I load the data using a CursorLoader
?
The .setAdapter()
on the ViewPager
only takes a PagerAdapter
. Then I would guess I need to bind the CursorAdapter
within the PagerAdapter
, but I could not find a way doing this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一篇博客文章,我在其中提供了源代码
CursorPagerAdapter
的代码,它可以完成您想要的操作。Here's a blog post where I offer the source code for a
CursorPagerAdapter
which does what you appear to want.您不需要
CursorAdapter
,只需使用Cursor
填充PagerAdapter
中的视图即可。You don't need the
CursorAdapter
, just use theCursor
to populate the views in thePagerAdapter
.