Android:如何轮询电子邮件?

发布于 2024-12-03 02:01:32 字数 220 浏览 1 评论 0原文

我正在制作一个小部件,除其他外,它还显示用户在给定收件箱中未读电子邮件的数量。
具体来说,我问如何:

- 获取设备上的电子邮件帐户列表

- 致电其中一个帐户,例如“

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜扑 2024-12-10 02:01:32

获取设备上的电子邮件帐户列表

这是不可能的。您可以使用AccountManager来尝试获取帐户信息,但据我所知,没有“电子邮件”类型,并且电子邮件程序不必使用AccountManager。

致电其中一个帐户

Android SDK 中没有任何用于电子邮件的内容。市面上有数十个甚至数百个电子邮件程序。没有一个是操作系统的一部分。欢迎电子邮件程序创建自己的应用程序小部件。

Obtain the list of email accounts on the device

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 use AccountManager.

Make a call to one of the accounts

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文