I'm using ViewPager according to this wonderful tutorial:
http://thepseudocoder.wordpress.com/2011/10/05/android-page-swiping-using-viewpager/
This tutorial show how to display only one "page" or view in every time/swip.
How can I make something like the strip in Pulse app:
That have the snapping effect like ViewPager but can have multiple views inside?
Using LayoutInflater you can do what ever you want inside instantiateItem
ReplyDeleteCreate the xml you need to view
Get and instance of LayoutInflater and inflate that xml on the page(s) you want
Inside instantiateItem do the changes to the inflated views by calling inflatedviewname.findviewbyid
Checkout this line in my project
Let me know in the comments if you still need help