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

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -