how to programmatically get a photo from the device's memory
10:21 28 Mar 2026

How to set image from download directory automatically?

I know image name and location, but I dont know what URI should be.

smg like that:

getImageUri(String imageName){

  Uri uri = Uri.parse("/download/1A258.png");
  imageView.setImageURI(uri);
}

java android