如何将要同步的电子邮件 ID 传递到 Android 中的创建事件日历中?
在 android 中,我们通过意图以编程方式插入事件。我们插入标题、描述和时间。但没有找到将与会者邮件 ID 和收件人邮件 ID 插入日历事件的键。如果不可能,为什么这不可能?如果可能,我该如何实现?
问题简要说明: 如何通过电子邮件将要同步的日历的邮件ID传递到创建事件中? 我有一个微调器,显示要同步的帐户列表。现在,像往常一样传递标题、描述以在日历应用程序中创建事件,我使用以下代码。
ContentValues values = new ContentValues();
values.put("calendar_id", 1);
values.put("title", title1);
values.put("allDay", 0);
values.put("dtstart", settime); // event starts at 11 minutes from now
values.put("dtend", cal.getTimeInMillis()+60*60*1000); // ends 60 minutes from now
values.put("description", desc1);
values.put("???????", mail_id);
values.put("???????", participant_mail_id);
values.put("visibility", 0);
values.put("hasAlarm", 1);
event = cr.insert(EVENTS_URI, values);
我应该使用什么来传递插入电子邮件 ID 和参与者 ID 的密钥?非常感谢任何帮助。我的屏幕截图如下。
In android we insert an event programmatically through intent. we insert title, description and time . But there is no key found to insert attendee mail id and recipient mail id into a calendar event. If it is impossible, Why is this not possible & If Possible , How do i achieve it?
Brief Explanation of question:
How to pass the mail id of the calendar that to be synchronized into the create event through email?
I have a spinner that shows the list of accounts to be synchronized . Now, as usual passing title,description to create event in calendar application, i use following code.
ContentValues values = new ContentValues();
values.put("calendar_id", 1);
values.put("title", title1);
values.put("allDay", 0);
values.put("dtstart", settime); // event starts at 11 minutes from now
values.put("dtend", cal.getTimeInMillis()+60*60*1000); // ends 60 minutes from now
values.put("description", desc1);
values.put("???????", mail_id);
values.put("???????", participant_mail_id);
values.put("visibility", 0);
values.put("hasAlarm", 1);
event = cr.insert(EVENTS_URI, values);
What should i use to pass the key to insert email id and participant id? Any Help is really appreciated. My screen shot goes below.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
日历提供程序自 ICS(API 级别 - 14)起是公开的。更多信息此处
要添加与会者,您需要事件 ID,因此您需要先添加事件。
API 级别 >=14 的示例:
API 级别 <14 的示例14:
Calendar Provider is public since ICS (API Level - 14). More info here
To add attendees you need the event id, so you need to add event first.
Example for API level >=14:
Example for API level < 14: