0
添加事件,我需要在日曆中添加一些事件,例如在8 - 15我需要添加「獨立慶典」。一是我點擊8 - 15已經展現「獨立慶典」,請幫助我,我我在急難需要在壓延
添加事件,我需要在日曆中添加一些事件,例如在8 - 15我需要添加「獨立慶典」。一是我點擊8 - 15已經展現「獨立慶典」,請幫助我,我我在急難需要在壓延
有很多關於同一問題壓延應該events.You有至少一次搜索論壇問過,但既然你問我給你一個代碼,你可以理解,並根據修改需要。
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);
如果你發現任何困難,那麼你可以參考這些以前提出的問題:你有麻煩了
是的,親愛但請發表你沒有試過的代碼。 –
請通過此鏈接第一,因爲有對SO同一出口的許多問題:http://stackoverflow.com/search?q=android+calendar+event的[Android的創建日曆事件] –
可能重複(HTTP:/ /stackoverflow.com/questions/6094243/android-create-calendar-event) –