加3級的事件我有了這個代碼安卓:一次
Calendar cal = Calendar.getInstance();
cal.set(Integer.parseInt(data_scelta_splittata[2]),Integer.parseInt(data_scelta_splittata[1]),Integer.parseInt(data_scelta_splittata[0]),Integer.parseInt(ora_scelta_splittata[0]),Integer.parseInt(ora_scelta_splittata[1]));
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", cal.getTimeInMillis());
intent.putExtra("allDay", "allDayFlag");
intent.putExtra("rrule", "FREQ=DAILY");
intent.putExtra("endTime", cal.getTimeInMillis());
intent.putExtra("title", "Avviso Bioscalin "+prodotto);
startActivity(intent);
的問題是,我需要在同一時間增加3個事件,該代碼添加一個事件,並提示給用戶的日曆加入預編譯,但我不能這樣做3次,這對用戶來說很無聊。任何想法?
您是否嘗試過使用循環? – MrYanDao
不,因爲我不知道它是否解決了用戶的問題 – Zak
不確定,但我懷疑你可以在沒有用戶交互(很容易)的情況下添加一個事件。你是否嘗試過使用日曆api來進行事件?也許這是要走的路...... – WarrenFaith