Hello Friends!
Today I have share the knowledge about the lazy loading image download from the internet in android.
The images will downloaded very fast with the help of the multiple thread.
Images that are not visible on the initial page load are not loaded or downloaded until they come into the main viewing area. Once an image comes into view it is then downloaded and faded into visibility. Scroll down this page to see the action for same.
For this i am using the open source library universal image loader made by nostra. Here you can download the universal image loader library Here.
Today I have share the knowledge about the lazy loading image download from the internet in android.
The images will downloaded very fast with the help of the multiple thread.
Images that are not visible on the initial page load are not loaded or downloaded until they come into the main viewing area. Once an image comes into view it is then downloaded and faded into visibility. Scroll down this page to see the action for same.
For this i am using the open source library universal image loader made by nostra. Here you can download the universal image loader library Here.
nice tutorials,this is very helped for me...keep it more examples
ReplyDeletethank u so much ankit its run!!!! oh my God you are genius thank u so much!!!!!!!!!!!!!!!!!!!!!!
ReplyDeleteYour welcome..Keep visiting...
ReplyDeleteWhat does this line do: intent.putExtra("stringarrayimage", Constants.IMAGES);? And how could i use it in C#?
ReplyDeleteif just blindly start an asynchronous operation on every getView() call while scrolling, you’d be wasting a lot of resources as most of the results would be discarded due to rows being recycled very often.
ReplyDeleteNeed Interaction awareness to your ListView adapter so that it doesn’t trigger any asynchronous operation per row after, say, a fling gesture on the ListView—which means that the scrolling is so fast that it doesn’t make sense to even start any asynchronous operation.
Please help on this.