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);