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);