Android Question CameraIntent

Declan

Well-Known Member
Licensed User
Longtime User
Could the CameraIntent example be edited to take both photographs and video?
I have tried to use the phone camera using:
B4X:
    Dim i As Intent
    i.Initialize("", "")
    i.SetComponent("android.hardware.camera2")
    Try
        StartActivity(i)
    Catch
        ToastMessageShow("Camera not found.", True)
    End Try
but I cannot load the systems camera.
 
Top