peacemaker Expert Licensed User Longtime User Nov 17, 2013 #1 http://developer.android.com/reference/android/provider/MediaStore.html#ACTION_IMAGE_CAPTURE Any one implemented ? Without need to use Camera libs...
http://developer.android.com/reference/android/provider/MediaStore.html#ACTION_IMAGE_CAPTURE Any one implemented ? Without need to use Camera libs...
NJDude Expert Licensed User Longtime User Nov 17, 2013 #2 That intent will open the device's camera app, that's all. B4X: Dim i As Intent i.Initialize("android.media.action.IMAGE_CAPTURE", "") StartActivity(i) Last edited: Nov 17, 2013 Upvote 0
That intent will open the device's camera app, that's all. B4X: Dim i As Intent i.Initialize("android.media.action.IMAGE_CAPTURE", "") StartActivity(i)
peacemaker Expert Licensed User Longtime User Nov 18, 2013 #3 Yes, thanks, i found http://www.b4x.com/android/forum/threads/getting-data-back-from-camera-app-intent.11378/#post-132918 And later to check at Activity_Resume i check if Dir\FileName exists. Main trick is to save file to the SD card, as all known Camera apps require this. Upvote 0
Yes, thanks, i found http://www.b4x.com/android/forum/threads/getting-data-back-from-camera-app-intent.11378/#post-132918 And later to check at Activity_Resume i check if Dir\FileName exists. Main trick is to save file to the SD card, as all known Camera apps require this.