1

I have a question that I want to Swipe Screens with touch in Horizontal Manner with Many Pages. Means the background of all these pages are same but Pages over that are different. Same as the WallPaper Screen of any Android Phone which is horizontal Scrollable and Pages are different. How to implement this in our project? PLease suggest me for right result.

Sanat Pandey
  • 4,081
  • 17
  • 75
  • 132

3 Answers3

1

What do you want is a ViewFlipper that android has it since day one.

1) the doc is right here: ViewFlipper Doc

2) Someone asked similar question before here:ViewFlipper Stackoverflow

Community
  • 1
  • 1
Terence Lui
  • 2,778
  • 1
  • 18
  • 17
0

You should do a Gallery or an HorizontalListView (which is not a component from android framework). You can always set a background and the component deals with the swiping behaviour for you !

Community
  • 1
  • 1
Sephy
  • 50,022
  • 30
  • 123
  • 131
0

I think you need ViewPager. You can use it after install android compatible packages.
you can get detail infomation from here.

Frank Cheng
  • 5,928
  • 9
  • 52
  • 80