将我的自定义Android日历与Google日历同步

时间:2013-11-30 23:45:11

标签: android calendar

在谷歌搜索时,我收到了很多关于Google Apps注册的方法。

我制作了一个CalendarView。我有一个列表视图,显示当天拍摄或可用的时间。选择日期和时间时,您可以在此时创建约会。

如何与Google日历同步以显示我的应用当时已预约?我需要向谷歌发送数据我知道,但是什么以及如何?

1 个答案:

答案 0 :(得分:2)

尝试使用Intents

将此事件添加到日历中
Calendar cal = Calendar.getInstance();              
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", cal.getTimeInMillis());
intent.putExtra("allDay", true);
intent.putExtra("rrule", "FREQ=YEARLY");
intent.putExtra("endTime", cal.getTimeInMillis()+60*60*1000);
intent.putExtra("title", "A Test Event from android app");
startActivity(intent);

更多详情:Adding time and date to google calendar via intent

祝你好运