嗨,所以我正在编写一个脚本来计算相机应用程序的一些延迟,我正在使用adb shell。其中一个是在用户使用应用程序时相机从前置摄像头切换到后置或后置到前置的时间。
所以我试过了:
adb shell am start -a android.media.action.STILL_IMAGE_CAMERA --ei android.intent.extras.CAMERA_FACING 1
然后我尝试调用相同的意图但改变了" 1"到" 0"但我得到了这个错误,
Starting: Intent { act=android.media.action.STILL_IMAGE_CAMERA (has extras) }
Warning: Activity not started, its current task has been brought to the front
这有点意义,但现在我卡住了,因为我不知道怎么去,实际上在相机之间切换,而我还在应用程序中。任何帮助,将不胜感激。致谢!!!