Hi, I can receive events using this code.
cur = null; cr = getContentResolver();
but, as you see, I can only receive events for a given time, but I need all the events (without any time specification, excluding repeated events), is this possible? And How? please help me.
cur = cr.query(Uri.parse("content://com.android.calendar/events"), INSTANCE_PROJECTION, null, null, null);
it gives a java.lang.IllegalArgumentException error:
source share