如何切换图库的适配器

发布于 2024-07-24 09:33:43 字数 342 浏览 6 评论 0原文

我可以动态切换图库的适配器吗?

在我的活动的 onCreate() 中,我这样做了:

myGallery.setAdapter(adapter1);

然后在我的代码中,我

myGallery.setAdapter(anotherAdapter1);

尝试了,但是在模拟器中,当我执行“setAdapter”时,myGallery 永远不会更新再次。 如何强制 myGallery 在使用 adapter1 时释放所有项目,然后使其重新填充 anotherAdapter1 的项目?

谢谢。

Is it possible for me to dynamically switch the adapter of a Gallery?

In the onCreate() of my activity, I did this:

myGallery.setAdapter(adapter1);

And then later on in my code, I did

myGallery.setAdapter(anotherAdapter1);

I tried, that but in the emulator, the myGallery never gets update when I do 'setAdapter' again.
How can I force myGallery free up all the items when it was using adapter1 and then makes it repopulate items for anotherAdapter1?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笨死的猪 2024-07-31 09:33:43

您需要调用适配器的notifyDataSetChanged()来

a.notifyDataSetChanged();

刷新对图库视图的更改。

you need to call notifyDataSetChanged() to the adapter

a.notifyDataSetChanged();

that will refresh your changes to the gallery view.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文