Currently I am showing a Bitmap in a fullscreen intent using the following code:
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(uri, "image/png");
startActivity(intent);
The issue I have is that it opens a gallery on some devices, whereas I just want to allow the user to view the image, that’s all. Any ideas?
Thanks!
To elaborate on my comment about just using an ImageView:
Or something like this.