here is the example screen i'm looking for, Is that possible with View-Pager. When i slide to that particular direction need to move another activity.

here is the example screen i'm looking for, Is that possible with View-Pager. When i slide to that particular direction need to move another activity.

I don't see why you want to use ViewPager here.
You can have a parent FrameLayout with four Views, for example ImageViews. Then, you can:
FrameLayout and detect which image was touched and act accordingly (to get an effect you may want to move your image together with the MotionEvent.ACTION_MOVE touch event until a certain threshold and then start a new Activity) - You can use this post: move a view on touch move as an example.