Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was looking into some coverflow solutions, but the one based on Neil Davis code, Polidea example (based on Neil Davis code), and some third anonymous solution, they all use deprecated widgets or deprecated methods.

(Gallery widget, GestureDetector, ...)

Is there any library similar to mentioned but of newer date without deprecations?

Tnx

share|improve this question

1 Answer

Instead of gallery widget you can use horizontal scroll view.In horizontal scroll view add linearLayout of horizontal orientation and add child views(images) to linear layout.By using left of the child and center of screen you can rotate the images.Its working for me.All the best

or you can use neil davis code which extends CoverAbsSpinner. In coverflow constructor change mGestureDetector=new GestureDetector(context,this).In GestureDetector all constructor are not deprecated.

share|improve this answer
1  
Can you give some example? – Balkyto Nov 19 '12 at 9:49
Yes, an example would be great! – androidika Jan 7 at 13:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.