I try to open a picture in the gallery, but it doesnβt appear. I registered URI as
06-08 15: 53: 02.232: D / URI (3231): file: ///mnt/sdcard/com.jesper.indkoeb/nm-image.jpg
which is the right place
@Override public void onClick(View v) { Intent intent = new Intent(); intent.setAction(android.content.Intent.ACTION_VIEW); File file = new File(uri.get(position)); Log.d("URI",uri.get(position)); intent.setDataAndType(Uri.fromFile(file), "image/*"); context.startActivity(intent); } });
source share