微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在 Android 中与文件路径共享文件/从文件路径获取工作 uri

如何解决在 Android 中与文件路径共享文件/从文件路径获取工作 uri

我正在尝试使用以下方法与其他应用(例如 Telegram、Whatapp 等)共享文件

Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_STREAM,uri);
sendIntent.setType("text/plain");
startActivity(sendIntent);

如果 uri 来自 ACTION_GET_CONTENT 活动,则它有效。但是我只有一个我想共享的文件的路径,如果我设置了:

uri = Uri.fromFile(new File(path))

看起来一切正常,但文件没有在最后一步发送。

如何从文件路径中获取可用的 uri?

解决方法

希望此代码对您有所帮助!

 ApplicationInfo api = getApplicationContext().getApplicationInfo();
                    String apkPath = api.sourceDir;
                    Intent share = new Intent(Intent.ACTION_SEND);
                    share.setType("application/vnd.android.package-archive");
                    share.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(new File(apkPath)));
                    startActivity(Intent.createChooser(share,"Share Via"));

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。