How to get android video capture to survive screen

2019-05-22 05:52发布

问题:

I have managed to get Video capture to work for a custom camera experience (i.e. using MediaRecorder, Camera, SurfaceView, etc.). But if I am recording a video and change the orientation of the device, video capture stops. Is there way to continue the capture after the orientation change? If fact I want the capture to continue no matter how many times the orientation changes. I imagine it might all have to do with savedInstanceState and saving the file that I pass to mRecorder.setOutputFile(my file). If that's correct, what else am I missing? Or is there a more standard way to handle orientation change during video recording? Thanks for any guidance.