读取特定的 Google 日历条目

发布于 2024-11-04 09:40:13 字数 399 浏览 0 评论 0原文

我是初学者 Android 开发者。 我有一个通话时间:

Cursor callCur = getContentResolver().query(android.provider.CallLog.Calls.CONTENT_URI, null, null, null,null);
int callDateIn = callCur.getColumnIndexOrThrow(android.provider.CallLog.Calls.DATE);
long callDate = new Long(callCur.getLong(callDateIn));

现在需要在 Google 日历中检查这个时间(long callDate),是否有任何条目(具有相同的时间)。 请问我该怎么办?

I am beginner android developer.
I have got a time of call:

Cursor callCur = getContentResolver().query(android.provider.CallLog.Calls.CONTENT_URI, null, null, null,null);
int callDateIn = callCur.getColumnIndexOrThrow(android.provider.CallLog.Calls.DATE);
long callDate = new Long(callCur.getLong(callDateIn));

Now need to check this time (long callDate) in Google Calendar, if there is any entry (with same time).
How can I do it please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

星光不落少年眉 2024-11-11 09:40:13

Android 操作系统中没有日历。

如果您指的是用户的 Google 日历,请使用 Google 日历 GData API

如果您指的是其他日历,请联系该日历的开发人员以查看有哪些 API 选项。

There is no calendar in the Android OS.

If you mean the user's Google Calendar, use the Google Calendar GData API.

If you mean some other calendar, contact that calendar's developers to see what API options there are.

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