gpt4 book ai didi

android - 为什么 `Intent.createChooser(shareIntentWithJpgFileName)` 停止工作?

转载 作者:太空狗 更新时间:2023-10-29 16:25:56 26 4
gpt4 key购买 nike

图像文件不再通过选择器

代码 startActivity(intent.createChooser(shareIntentWithJpgFileName)) 在我的应用程序中运行良好多年,但大约一个月前我注意到它不再将图像文件传递给应用程序用户在选择器对话框中选择。我怀疑 Android OS 安全改组(再次!),但不确定如何进行。

如果用户在选择器对话框中选择任意数量的选项,应用程序将打开,但不会显示作为 Intent 一部分的 .jpg。如果用户选择 Google Drive,我会通过它的 toast 得到错误提示:

Upload unsuccessful: request contained no data

曾经有效的代码:

String fileName = data.getStringExtra(EXTRA_FILENAME);                    
Log.v(TAG, "Starting Share intent. fileName: " + fileName); //This shows fileName: /storage/emulated/0/dcim/DalesApp/IMG_20190103_142555_8445288886207383328.jpg
Intent shareIntentWithJpgFileName = new Intent(Intent.ACTION_SEND);
shareIntentWithJpgFileName.setType("image/jpeg");
File filePassedIn = new File(fileName);
Log.v(TAG, "exists: " + filePassedIn.exists() + " canRead: " + filePassedIn.canRead()); // Result is exists: true canRead: true. Thanks Mark!
shareIntentWithJpgFileName.putExtra(MediaStore.EXTRA_OUTPUT, FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID + ".provider", filePassedIn));
shareIntentWithJpgFileName.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(Intent.createChooser(shareIntentWithJpgFileName, "Share Image"));

此外,我将其作为 AndroidManifest.xml 的一部分:

<provider    
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>

这也在 AndroidManifest.xml 中:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

问题

为什么它停止工作,我怎样才能让它再次工作?

我很乐意维护/更新/修复/纠正/删除这个问题,所以如果您因任何原因发现它不满意,请给我指导。

附录

我将 Logcat 中的过滤器从仅显示选定的应用程序更改为无过滤器,并且能够看到来自所有应用程序的日志记录。大概弹出了 50 行左右。很难说出哪些项目适用于我开始的 Intent ,但有些显然来 self 开始的 Intent (在选择器对话框中选择 Google Drive)。我挑选了一些更有趣的日志条目:

I/ActivityManager: START u0 {act=android.intent.action.SEND typ=image/jpeg flg=0xb080001 cmp=com.google.android.apps.docs/.shareitem.UploadMenuActivity (has extras)} from uid 10196
E/SchedPolicy: open of /dev/cpuctl/bg_non_interactive/tasks failed: No such file or directory
I/ActivityManager: Start proc 12705:com.google.android.apps.docs/u0a92 for activity com.google.android.apps.docs/.shareitem.UploadMenuActivity
E/AsyncTask #3-DataSourceHelper: Uploading single file but neither EXTRA_STREAM nor EXTRA_TEXT is specified.
E/main-UploadMenuActivity: No files requested to be uploaded: android.intent.action.SEND
I/LaunchCheckinHandler: Displayed com.google.android.apps.docs/.shareitem.UploadMenuActivity,cp,ca,570

我的下一步是检查“EXTRA_STREAM”,我还没有这样做,但我可能接近自己解决这个问题。

最佳答案

ACTION_SEND 根据 the documentation 使用 Intent.EXTRA_STREAM 作为二进制内容,而不是 MediaStore.EXTRA_OUTPUT

关于android - 为什么 `Intent.createChooser(shareIntentWithJpgFileName)` 停止工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54028865/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com