前端之家收集整理的这篇文章主要介绍了
Android图片的Intent.ACTION_VIEW,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(
Uri.parse("file://" +file.getAbsolutePath()),"image/*");
startActivity(intent);
我想使用android intent显示图像共享,删除和设置为功能.但我的图像是打开没有共享选项………如何显示共享选项的图像?
默认情况下,它不会
显示共享和
删除选项.但您可以使用Intent和File手动执行此操作.
原文链接:https://www.f2er.com/android/315002.html