Swipe between activities

前端 未结 2 2079
遇见更好的自我
遇见更好的自我 2020-12-12 01:41

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

相关标签:
2条回答
  • 2020-12-12 02:19

    You want the ViewPager. Read this blog post on it.

    0 讨论(0)
  • 2020-12-12 02:33

    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.

    0 讨论(0)
提交回复
热议问题