Page 1 of 1

Go to Calendar.

Posted: Mon Mar 16, 2015 7:55 pm
by pollensa1946
Since updating to Android V5...

Long Press an Event/Add Event to Calendar... goes correctly to my Calendar App.

BUT...

Long Press an Event/Go to Calendar... goes incorrectly to the Google Calendar (no choice is offered as to which app to go to). Previously (V4) it went correctly to my Calendar App.

Re: Go to Calendar.

Posted: Tue Mar 17, 2015 12:52 am
by devin
Hello
I think it is because: your calendar program not registered the appropriate interface.

Code: Select all

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(CalendarContract.CONTENT_URI, "time/epoch");
intent.putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME, time);

Re: Go to Calendar.

Posted: Tue Mar 17, 2015 9:13 am
by pollensa1946
devin wrote:Hello I think it is because: your calendar program not registered the appropriate interface.
Yes. After some testing I found that the calendar app, Business Calendar (BC) V1, did not work properly on Android V5, but upgrading to BC V2 the interface from DWP now works fine. Thanks.

Re: Go to Calendar.

Posted: Sun Mar 22, 2015 5:49 am
by devin
You are welcome!