minghuang
minghuang

Reputation: 11

how can I set eventID in android calendar

I want to know whether there is a method that we can set eventID during insert event into calendar using Intent?

Upvotes: 1

Views: 605

Answers (1)

Pratik Dasa
Pratik Dasa

Reputation: 7439

Put below line when you add new event.

values.put(Events._ID, YOUR EVENT ID.longValue());

Events._ID consists value _id, its just for your information.

Upvotes: 1

Related Questions