Reputation: 11
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
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