Android - How can I find out how many unread email the user has?(Android - 我如何找出用户有多少未读电子邮件?)
问题描述
我正在编写一个程序来显示未读短信、彩信、电话和电子邮件的数量.很容易找到如何查询短信和电话(我使用了此页面上的搜索),但我无法找到如何查询电子邮件.
I'm writing a program that should display the amount of unread sms, mms, phone calls and emails. It was quite easy to find how to query for sms and phone calls (I used the search on this page) but I have not been able to find out how to query for emails.
有没有办法查出用户手机中有多少未读邮件?
Is there anyway to find out how many unread emails the user got in their phone?
推荐答案
我是 Gmail Unread Count 的作者.查看 Gmail.java,这是我用的.有几种方法可以做到这一点.我直接从标签中读取未读计数.你应该能够通过阅读源代码来弄清楚如何使用它.
I'm the author of Gmail Unread Count. Check out Gmail.java, it's what I use. There are a couple of ways to do it. I read the unread count directly from the label. You should be able to figure out how to use it by reading the source.
从电子邮件中获取未读计数是不可能的,因此您必须在那里进行轮询.
Getting the unread count from Email is afaik not possible so you'll have to do polling there.
这篇关于Android - 我如何找出用户有多少未读电子邮件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android - 我如何找出用户有多少未读电子邮件?
基础教程推荐
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01