1
在我的應用程序中,我必須添加一個事件。該活動具有開始日期,結束日期,開始時間,結束時間和說明。 現在我不知道如何將的開始日期和結束日期添加到事件中。Android中的事件添加問題
我使用下面的代碼:
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", cal.getTimeInMillis());
intent.putExtra("allDay", false);
intent.putExtra("rrule", "FREQ=DAILY");
intent.putExtra("endTime", cal.getTimeInMillis()+60*60*1000);
intent.putExtra("title", "A Test Event from android app");
startActivity(intent);
當我運行此代碼,它要求我補充或日曆取消。但我的需要是,應該在沒有用戶交互的情況下添加它。請幫幫我。