I have two Activities. WebViewActivity and CameraPreviewActivity
I should be able to switch between the two activities on click of a button. Once I have started CameraPreviewActivity, further loads of the activity should not take much time to initialize the camera view. It should be like its getting resumed from previous state.
Is it a good idea to do this by keeping the launch mode of both activities as 'Single Instance' and start the activities when the respective button is clicked?