I have a activity that select image on the android photo gallery
Intent intent = new Intent(Intent.Action_PICK, MediaStore.Images.Media.INTERNAL_OCNTENT_URI);
but I want to choose images from my android studio drawable folder instead.
how should I modify the code?