android - Lazy loading with fade in -


i'm looking way lazy load images listview. preferably framework support image animations.

is available android?

i'm using api level 8 , up.

you want take @ android query. has support lazy loading of images. can see in the documentation, supports basic animations.

example lazy load basic settings:

aquery aq = new aquery(context); aq.id(your_imageview).image("your_image_url"); 

example lazy load image fade in animation:

aquery aq = new aquery(context); aq.id(your_imageview).image("your_image_url", true, true, 0, null, 0, aquery.fade_in); 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -