读取特定的 Google 日历条目
我是初学者 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.