如何在android设备的本机图像查看器中添加旋转选项

如何在android设备的本机图像查看器中添加旋转选项,android,android-intent,android-fragments,rotation,imageview,Android,Android Intent,Android Fragments,Rotation,Imageview,我使用以下代码在本机图像查看器中查看图像 Intent intent = new Intent(); intent.setAction(android.content.Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(new File("My path")), "image/*"); con.startActivity(intent); 我的问题是如何在本机图像查看器中添加旋转选项 没有人能帮我解决这个问题?我仍然无法找到解决方案。

我使用以下代码在本机图像查看器中查看图像

Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File("My path")), "image/*");
con.startActivity(intent);

我的问题是如何在本机图像查看器中添加旋转选项

没有人能帮我解决这个问题?我仍然无法找到解决方案。有人能帮我吗?请给我你的代码,如果你能解决的话。还没有。我认为android团队在预加载的图像查看器中没有提供这样的选项。在将图像发送到图像查看器之前旋转图像似乎是唯一的选项