-1

coverflow android:how to download images from gallery. I have used code from this site http://www.inter-fuser.com/2010/01/android-coverflow-widget.html but it uses images from resources,I need to load all the images from gallery and then display it using coverflow effect. Please somebody help me out.

1 Answers1

2

you need to apply lazy loading for images in coverflow

take took at this

Lazy load of images in ListView

Community
  • 1
  • 1
Shiva
  • 754
  • 6
  • 16
  • first you need to filter images data from SD card. and you need to get path for each images and decode the Image from the file-path as Bitmap bitmap=BitmapFactory.decodeFile(imageFile.getAbsolutePath()); ImageView.setImageDrawable(bitmap); – Shiva Sep 09 '12 at 18:25
  • above link expalin about downloading images from web. I want to download images from gallery and then need to apply coverflow effect on it.I am able to download images from gallery but coverflow effect is not working. – Achilles2020 Sep 10 '12 at 05:45
  • data into gallery comes from sd card.just you need to changes the url with path of image from sd card. you need to read file from sd card as bitmap, and then send this bitmap to gallery adapter. – Shiva Sep 10 '12 at 06:28