Answers for "android pick image from gallery to file"

0

intent code to open image only in gallery

Intent i = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
 startActivityForResult(i, RESULT_LOAD_IMAGE);
Posted by: Guest on September-22-2020
0

android pick up photo from local device

intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
 startActivityForResult(intent, TFRequestCodes.GALLERY);
Posted by: Guest on July-07-2020

Code answers related to "android pick image from gallery to file"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language