I execute the following code:
Uri uri = Uri.withAppendedPath(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, imageIdStr); Intent intent = new Intent(); intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setData(uri); activity.startActivity(intent);
which opens the image viewer activity but I don't want to see the navigation arrows as well as the items in the menu. I only want the zoom controls. Is it possible to have it like that ?