ACTION_VIEW instead of ACTION_EDIT new cal event

ACTION_EDIT did not seem to work on lollipop
pull/253/head
Alex Baker 10 years ago
parent bf22b8ed00
commit 47e08538e6

@ -158,7 +158,7 @@ public class GCalControlSet extends PopupControlSet {
if (calendarSelector.getSelectedItemPosition() != 0 && !hasEvent) {
// pop up the new event
Intent intent = new Intent(Intent.ACTION_EDIT, calendarUri);
Intent intent = new Intent(Intent.ACTION_VIEW, calendarUri);
intent.putExtra("beginTime", values.getAsLong("dtstart"));
intent.putExtra("endTime", values.getAsLong("dtend"));
activity.startActivity(intent);

Loading…
Cancel
Save