无法从android中的电子邮件客户端打开应用程序(unable to open the app from email client in android)

编程入门 行业动态 更新时间:2024-10-17 13:35:39
无法从android中的电子邮件客户端打开应用程序(unable to open the app from email client in android)

我正在编写应用程序来打开HTML文件。 在某些设备(如Galaxy播放器,nexus one)中,当我尝试从电子邮件客户端打开html文件时,我的应用程序未显示在

“打开用”

打开“对话框,但如果我从我的应用程序显示的Gmail客户端打开相同的HTML文件

“打开用 ”

用“对话框打开。在其他设备(如Google nexus,S2等)中,我可以通过我的应用程序从电子邮件客户端,电子邮件客户端打开HTML文件。这是特定于设备的问题吗?

I am writing the application to open HTML files. In some devices (like Galaxy player,nexus one) when i try to open html file from Email client ,my application is not showing in

"open with"

open with " dialog ,but if i open the same HTML file from Gmail client my app is showing in

"open with "

open with" dialog . In other devices(like Google nexus ,S2 etc), i am able to open the HTML file through my application from Email client, Email client .is this device specific issue?

最满意答案

在某些设备中,电子邮件客户端没有以mime类型打开应用程序作为text / html.so我改变如下。

<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/html"/> <data android:mimeType="text/plain"/> </intent-filter>

然后,电子邮件应用程序可以在列表中显示我的应用程序。但它将显示我们何时使用opne HTML / Text文件。

In some devices Email client is not opening the app with mime type as text/html.so i changed like follows.

<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/html"/> <data android:mimeType="text/plain"/> </intent-filter>

Then email app is able to show my application in the list.but it will show when we tring to opne HTML/Text files.

更多推荐

HTML,打开,nexus,open,应用,电脑培训,计算机培训,IT培训"/> <meta name="descrip

本文发布于:2023-04-28 06:48:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1330335.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:应用程序   客户端   电子邮件   android   unable

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!