You have to initialize the Device Graphics Manager:
Code:
SharedGraphicsDeviceManager graphics = SharedGraphicsDeviceManager.Current;
and then passing the Graphics Device to the spriteBatch:
Code:
spriteBatch = new SpriteBatch(graphics.GraphicsDevice);
This is for Windows Phone, I guess is the same for Xbox.