如何从android 日历StartTime
中获取和获取事件?我正在使用此代码获取事件的所有数据,但它给了我,但我需要Start和End。这是代码EndTime
StartDate
EndDate
Date + Time
CalNames[i] = "Event" + cursor_event.getInt(0) + ": \nTitle: "
+ cursor_event.getString(1) + "\nDescription: "
+ cursor_event.getString(2) + "\nStart Date: "
+ new Date(cursor_event.getLong(3)) + "\nEnd Date : "
+ new Date(cursor_event.getLong(4)) + "\nLocation : "
+ cursor_event.getString(5);