Still trying to wrap my head around how B4A handles intents. What I am looking to do is create an intent to launch the camera application:
Dim camintent as Intent
camintent.Initialize("android.media.action.IMAGE_CAPTURE","")
StartActivity(camintent)
works just fine, but what I need is to get the image from that transaction. Either filename (better for me), or image data.
Thanks,
-Sean
Dim camintent as Intent
camintent.Initialize("android.media.action.IMAGE_CAPTURE","")
StartActivity(camintent)
works just fine, but what I need is to get the image from that transaction. Either filename (better for me), or image data.
Thanks,
-Sean