I’m using andengine in my Android application and would like to display images from device’s gallery. How I can get images path?
Please note, I do not want to use something like this:
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"),1);
What I need, is just the path of images. Would you please help me?
Try this code without using intent,