简体   繁体   English

如何从Android浏览器下​​载* .ics文件?

[英]How to download *.ics file from the browser in android?

How to register a new MIME type in android? 如何在Android中注册新的MIME类型? I am very much new to android. 我对android非常陌生。 I need to download a *.ics file from the browser (Email attachment).but the browser response is unsupported file format.Can anyone help me ??? 我需要从浏览器(电子邮件附件)下载一个* .ics文件。但是浏览器的响应是不受支持的文件格式。有人可以帮助我吗?

Android intent filter for a particular file extension? Android意向过滤器的特定文件扩展名?

How to open email attachment in my app on android? 如何在Android上的应用程序中打开电子邮件附件?

How to send/open email attachments from android app? 如何从Android应用发送/打开电子邮件附件?

For iCalendar , that means you will need an activity with the following <intent-filter> : 对于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>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM