如何从Gmail接收图像到Android中的应用程序

如何从Gmail接收图像到Android中的应用程序,第1张

概述我有一个应用程序可以通过Android上的Gmail中的“预览图像”接受图像我有乌里:内容://gmail-ls/messages/my_gmail_id_@_gmail.com/65/attachments/0.1/SIMPLE/falseAstro图片查看器或图库可以很好地显示图片我可以使用URI:content://media/external/images/media/79但我

我有一个应用程序可以通过Android上的Gmail中的“预览图像”接受图像

我有乌里:

内容://gmail-ls/messages/my_gmail_ID_@_gmail.com/65/attachments/0.1/SIMPLE/false

Astro图片查看器或图库可以很好地显示图片

我可以使用URI:content:// media / external / images / media / 79

但我不知道如何使用此Uri在我的应用程序中显示图像.

请帮帮我

解决方法:

对不起,最后一个答案.我有点不好意思.
但这应该是您所寻找的更多.此确切的代码可能会运行,也可能不会运行,但从概念上讲,这是我发现它应该工作的方式.如果您有任何问题,请告诉我.

//Get your uriUri mAndroIDUri = Uri.parse("content://gmail-ls/messages/my_gmail_ID_@_gmail.com/65/attachments/0.1/SIMPLE/false");ImageVIEw iv = new ImageVIEw(context);try{    //converts androID uri to java uri then from that to file    //after converting to file you should be able to manipulate it in anyway you like.     file mfile = new file(new URI(mAndroIDUri.toString()));    Bitmap bmp = BitmapFactory.decodeStream(mfile);    if (null != bmp)        iv.setimageBitmap(bmp);    else        System.out.println("The Bitmap is NulL");    }catch(Exception e){}}
总结

以上是内存溢出为你收集整理的如何从Gmail接收图像到Android中的应用程序全部内容,希望文章能够帮你解决如何从Gmail接收图像到Android中的应用程序所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1071815.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存