ADB command to toggle camera modes in android device

后端 未结 3 1504
醉话见心
醉话见心 2021-01-17 01:41

I am trying to figure out what is the command to load the camera app in different modes like following:

  1. Toggle between camera and video cam corder mode
  2. <
3条回答
  •  生来不讨喜
    2021-01-17 02:07

    You can use following though:

    Intent action = new Intent("android.media.action.IMAGE_CAPTURE");  
            action.putExtra("android.intent.extras.CAMERA_FACING", 1);
    

    You can use adb command "am start" . Please read following: How to run a specific Android app using Terminal?

提交回复
热议问题