Day: August 23, 2022

How do I select photos in Android Gallery?How do I select photos in Android Gallery?

How do I select photos in Android Gallery? Pick image from gallery in Android Intent intent = new Intent(Intent. ACTION_GET_CONTENT); intent. addCategory(Intent. CATEGORY_OPENABLE); intent. setType(“image/*”); startActivityForResult(Intent. createChooser(intent, “Select Picture”),REQUEST_GET_SINGLE_FILE); How