gpt4 book ai didi

Android:如何使用 intent-filter 处理 PDF 电子邮件附件?

转载 作者:太空狗 更新时间:2023-10-29 13:41:46 27 4
gpt4 key购买 nike

我一直在尝试让电子邮件或 gmail 应用程序让我选择使用我的应用程序打开 PDF 附件,但无济于事。我的 Intent 过滤器看起来像:

        <intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:mimeType="application/pdf" />
</intent-filter>

当我查看模拟器时, Activity 管理器会广播:

02-04 15:45:03.626: INFO/ActivityManager(59): Starting activity: Intent { act=android.intent.action.VIEW dat=content://com.android.email.attachmentprovider/1/17/RAW flg=0x80001 }

我做错了什么?

提前致谢...

最佳答案

我在从邮件中打开 csv 文件时遇到了类似的问题(使用 Android 2.2)。它终于可以使用

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="*/*" android:host="*" android:pathPattern=".*.csv" />
</intent-filter>

更改数据标记中的任何内容导致无法在打开 csv 文件时从电子邮件应用程序调用我的应用程序。

您可能还想查看 Intent filter to download attachment from gmail apps on Android

关于Android:如何使用 intent-filter 处理 PDF 电子邮件附件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4902902/

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