在不下载的情况下通过 href 以 intent 方式打开文件
Open file in intent by href without download
有什么解决方案可以在不下载文件的情况下通过 href 以 intent 方式打开和显示文件?
过去我通过 RxDownloader 下载文件,然后才打开它
intent.setDataAndType(uri, mime);
context.startActivity(intent);
Any solution to open and show file in intent by href without download it?
使用 ACTION_VIEW
,就像使用本地内容一样。
是否有应用程序可以处理所需的 MIME 类型和 https
(或其他)方案取决于用户和用户安装的应用程序的开发人员。你无法控制其中的任何一个。
有什么解决方案可以在不下载文件的情况下通过 href 以 intent 方式打开和显示文件? 过去我通过 RxDownloader 下载文件,然后才打开它
intent.setDataAndType(uri, mime);
context.startActivity(intent);
Any solution to open and show file in intent by href without download it?
使用 ACTION_VIEW
,就像使用本地内容一样。
是否有应用程序可以处理所需的 MIME 类型和 https
(或其他)方案取决于用户和用户安装的应用程序的开发人员。你无法控制其中的任何一个。