如何在android中注册新的MIME类型?我对android很新。我需要从浏览器下载* .ics文件(电子邮件附件)。但是浏览器响应是不支持的文件格式。任何人都可以帮助我???
答案 0 :(得分:0)
Android intent filter for a particular file extension?
How to open email attachment in my app on android?
How to send/open email attachments from android app?
对于iCalendar,这意味着您需要具有以下<intent-filter>
的活动:
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW" />
<data android:mimeType="text/calendar" />
</intent-filter>