Android:如何轮询电子邮件?
我正在制作一个小部件,除其他外,它还显示用户在给定收件箱中未读电子邮件的数量。
具体来说,我问如何:
- 获取设备上的电子邮件帐户列表
- 致电其中一个帐户,例如“
int newMailCount = accountInstance.getMailCount()
有什么想法吗?”
谢谢
I'm making a widget who, among other things, displays the quantity of unread emails the user has in a given inbox.
Specifically, I'm asking how to:
-Obtain the list of email accounts on the device
-Make a call to one of the accounts such as
int newMailCount = accountInstance.getMailCount()
Any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的。您可以使用AccountManager来尝试获取帐户信息,但据我所知,没有“电子邮件”类型,并且电子邮件程序不必使用AccountManager。
Android SDK 中没有任何用于电子邮件的内容。市面上有数十个甚至数百个电子邮件程序。没有一个是操作系统的一部分。欢迎电子邮件程序创建自己的应用程序小部件。
This is not possible. You can use
AccountManager
to try to get at account information, but there is no "email" type that I am aware of, and email programs do not have to useAccountManager
.There is nothing in the Android SDK for email. There are dozens, perhaps hundreds, of email programs out there. None are part of the operating system. Email programs are welcome to create their own app widgets.