View Stub(Pagination) and Lazy loading of Images in android
In android mobile we have an default application Market, under submenu there is function开发者_如何学编程ality called all applications. In this, first it shows only ten records in which it will display defalut image and text, then in back ground it will update images. When we scroll down (i.e., end of list) and it shows loading and then it loads next 10, images will load lazily.
How to acheive this senario.
Thanks in Adavance
Jayanth
In this, first it shows only ten records in which it will display defalut image and text, then in back ground it will update images.
I have done this with my ThumbnailAdapter
, though I want to rewrite it sometime in the next few months.
When we scroll down (i.e., end of list) and it shows loading and then it loads next 10, images will load lazily.
I have done this with my EndlessAdapter
.
Perhaps these will give you some ideas.
精彩评论