CamronK22
CamronK22

Reputation: 17

How do I switch between layouts (like the ICS+ calculator sort of) with slide?

I currently use the onBackPressed() to switch between layouts in an android app, but that's not a very traditional method. I want to implement a swipe/slide gesture to switch between them. Any ideas on how to do that?

Upvotes: 1

Views: 49

Answers (1)

M-Wajeeh
M-Wajeeh

Reputation: 17304

You are looking for ViewPager http://developer.android.com/reference/android/support/v4/view/ViewPager.html

Also have a look at official examples here: http://developer.android.com/training/animation/screen-slide.html

Upvotes: 2

Related Questions