如何切换图库的适配器
我可以动态切换图库的适配器吗?
在我的活动的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要调用适配器的notifyDataSetChanged()来
刷新对图库视图的更改。
you need to call notifyDataSetChanged() to the adapter
that will refresh your changes to the gallery view.