I want to ask whether the built-in camera to take photos and change the name in a specific folder.
Usually, we call this code to start built-in camera.
Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE );
startActivityForResult( intent, 0 );
At onActivityResult(), we get the bitmap we just take and save it under a specific photo. As i know, it works for a single photo. However, if user takes many photos, can i get a list of these photo name??
Thanks all.