我正在开发一个Android应用,该应用可以让用户从设备中选择视频,然后将其分享给其他人。我想保存视频的路径,因此下一次用户打开应用程序时,他只需要按一下共享按钮即可。 我成功完成了第一部分,并将Uri保存为带有SharedPreferences的字符串,但是当我返回到应用程序时,关闭并尝试共享后,该应用程序崩溃了。 我了解这种情况的发生是因为我没有给予正确的许可。但是我尝试了在google中找到的所有内容,但未解决。
我的代码:
Main2Activity.this.grantUriPermission("com.whatsapp", selectedVideo, Intent.FLAG_GRANT_READ_URI_PERMISSION);
Intent shareVideo = new Intent();
shareVideo.setAction(Intent.ACTION_SEND);
shareVideo.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
shareVideo.setPackage("com.whatsapp");
shareVideo.putExtra("jid", PhoneNumberUtils.stripSeparators("972"+phoneNumber) + "@s.whatsapp.net");
shareVideo.putExtra(Intent.EXTRA_STREAM, selectedVideo);
shareVideo.setType("video/*");
shareVideo.putExtra(Intent.EXTRA_TEXT,
getString(R.string.user_name) + " : " + userName + "\n" +
getString(R.string.user_email) + " : " + userEmail + "\n" +
getString(R.string.user_phone_number) + " : " + userPhoneNumber + "\n");
startActivity(shareVideo);