I'm writing an application for android and would like to have an itunes
like coverflow preview.
Is there anything in the api that I can use or do I have to build it from scratch?

- 452
- 1
- 5
- 20

- 7,454
- 12
- 57
- 64
-
Cover Flow is [patented](http://www.engadget.com/2010/04/08/apple-granted-design-patent-on-cover-flow/). – feklee Oct 02 '11 at 08:17
5 Answers
I've created a basic coverflow widget it can be found here:
http://www.inter-fuser.com/2010/01/android-coverflow-widget.html

- 429
- 5
- 11
-
Thanks taf. Your application is awesome. Can you prepare an application on page curl animation in android which is in iPhone. I would be very thankful to you if you help me out in this. – Jan 12 '11 at 13:59
-
But this is not consistent. I have tried this, but it leads to VM outOfMemory error. This is because bitmap takes too mush of memory – Andro Selva May 30 '11 at 11:43
-
I guess the link is no more valid...the domain has expired or something like that... – Amol Gupta Sep 05 '11 at 13:01
-
Hello @taf, can u give me a tip how to do extra zoom on centered image in coverFlow on click? I analyzed code but not sure which parameter I should change to achieve it.. :S I know that cenetered image is already zoomed but I want to achieve following effect: centered view is zoomed but on click it zoom even more (just that one), on one more click it goes back to normal zoomed level defined by CoverFlow parameters.. thank u a lot for advice, I found very useful ur code of CoverFlow.. Cheers – Ewoks Mar 06 '12 at 10:37
-
-
It works great. I just wanted to know if it's possible to increase the height of the coverflow. There was a block of code in your sample that set the layout params (height to 500) but was commented. I tried uncommenting it to set the height, but the application crashed. Could you please guide us in this regard. Thanks. – Ali Shah Ahmed Nov 19 '13 at 06:50
-
Well I figured this out. I just changed the layout params of the imageView in createReflectedImages function, and it worked. Thanks for the great example. Cheers. – Ali Shah Ahmed Nov 19 '13 at 06:58
-
There is no built-in coverflow widget, the closest thing is probably the Gallery widget. Still I'd be surprised if someone hadn't tried something of the sort yet, and you might find some code floating around the internet. Google has some mentions of coverflow on Android, though I haven't checked it out in any detail.

- 14,607
- 4
- 29
- 35
-
There is a Coverflow view in the music application. But I haven't figured out if they use a standard view that is just not documented of if they wrote their own. – Janusz Mar 23 '10 at 11:21
-
3Gallery is deprecated. You should use either HorizontalScrollView or ViewPager. – android developer Mar 12 '13 at 09:10
For latest versions (3.1+) of the sdk there is a sample provided during Google I/O 2 years ago. It shows a 3D coverflow which could be an alternative to a coverflow. (It's widely used in apps like Google Music and News app).
Demo here.
Source code here.

- 11,017
- 15
- 71
- 106
-
1This is developed using the Renderscript graphics API which is now deprecated in Android 4.1 Jelly Bean. – taf Jul 16 '12 at 09:39
I made a coverflow widget from scratch. It doesn't use any deprecated components. You can find it here: http://applm.github.io/ma-components/

- 344
- 2
- 8