我想用我的 Android 应用程序打开包含 xls 和 xlsx 文件的电子邮件附件。目前我可以从我的应用程序中打开 csv 文件。请帮忙。我在清单中为 csv 使用的代码是:
<intent-filter
android:icon='@drawable/rr_ipad1_icon'
android:label="@string/app_name"
android:priority='1'>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:mimeType="text/csv" />
<data android:pathPattern="*.csv" />
</intent-filter>
<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="text/csv" android:scheme="http" android:host="*" android:pathPattern=".*\\.csv" />
<data android:mimeType="text/csv" android:scheme="https" android:host="*" android:pathPattern=".*\\.csv" />
</intent-filter>