I am trying to make an app that will have multiple screens, and I want to be able to swipe left and right to go back and forth from screen to screen. Basically like how you go through pi ctures in the gallery, but mine won’t just be pictures. Any tutorials or a suggestion on what type layout I should use.. TIA
Share
Try HorizontalScrollView. If you want it to snap, you will probably have to write some code that sets the position of the scrollview correctly either on up touchevents, and/or intercepting those events to a GestureDetector with SimpleOnGestureListener to catch flings specifically.