Set on touch listener for your ViewPager or contentview of ViewPager item.
Take the half of the screen/view width, check if event.getX() is greater than the half value, if so, go to next, otherwise to the previous.
@Override
public boolean onTouch(View v, MotionEvent ev) {
    if(ev.getAction() == MotionEvent.ACTION_DOWN){
        mDownX = ev.getX();
        mDownY = ev.getY();
        isOnClick = true;
    }else if(ev.getAction() == MotionEvent.ACTION_UP ){
        if (isOnClick ) {
               if(ev.getX() > mViewPager.getWidth()/2) {
                  //go to next
               }else{
                 //go to previous
                  }
               return true;
        }
    }else if(ev.getAction() == MotionEvent.ACTION_MOVE){    
     if (isOnClick && (Math.abs(mDownX - ev.getX()) > DRAG_THRESHOLD || Math.abs(mDownY - ev.getY()) > DRAG_THRESHOLD)) {
        isOnClick = false;
        return false;
    }
 }
    return false
}