I want to swipe between activities, but I\'m not sure what best practices would be.
Should I throw everything in at once and scroll from each activity?...and does t
You want the ViewPager. Read this blog post on it.
You could also use GestureDetector and OnGestureListener to launch a new Intent when a fling is detected with public boolean onFling().
Personally I would use the ViewPager as described by kabuko.