Go to Calendar.

Moderators: dwp, devin

Post Reply
pollensa1946
Posts: 295
Joined: Fri May 09, 2014 8:34 am

Go to Calendar.

Post 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.
devin
Posts: 1337
Joined: Fri Oct 11, 2013 10:16 am

Re: Go to Calendar.

Post 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);
pollensa1946
Posts: 295
Joined: Fri May 09, 2014 8:34 am

Re: Go to Calendar.

Post 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.
devin
Posts: 1337
Joined: Fri Oct 11, 2013 10:16 am

Re: Go to Calendar.

Post by devin »

You are welcome!
Post Reply