在谷歌搜索时,我收到了很多关于Google Apps注册的方法。
我制作了一个CalendarView。我有一个列表视图,显示当天拍摄或可用的时间。选择日期和时间时,您可以在此时创建约会。
如何与Google日历同步以显示我的应用当时已预约?我需要向谷歌发送数据我知道,但是什么以及如何?
答案 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);
祝你好运