Android Question Save Pic from cam inside starter service

invocker

Active Member
Hi

Is there a Class to allow saving a pic From Hiden Cam with Starter service To send It Between Client And Server

I use Intent But It show the Cam

B4X:
Dim i As Intent

    i.Initialize("android.media.action.IMAGE_CAPTURE", "")
    i.PutExtra("output", ParseUri("file://" & File.Combine(Directory, PictureName)))
          
 StartActivity(i)
thank's
 
Top