Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Listen to android calendar changes. (Sync/Delete/Insert etc..)

I've understand I have to use Content Provider to get all changes, but I also realized starting API14 there is a ready Content Provider for the calendar which I can use to listen to instead of "building" my own custom one.
Is there anywhere I can see an example of this ?
Can someone please post the core of this listener ?

Thanks

like image 455
SagiLow Avatar asked Nov 16 '13 12:11

SagiLow


1 Answers

First you need to add this type of receiver to the Manifest:

    <receiver android:name="your.package.name.CatchChangesReceiver"
        android:priority="1000" >
        <intent-filter>
            <action android:name="android.intent.action.PROVIDER_CHANGED" />
            <data android:scheme="content" />
            <data android:host="com.android.calendar" />
        </intent-filter>
    </receiver>

Then create a simple class which extends broadcast receiver:

public class CatchChangesReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
    // add processing here with some query to content provider
        // in my project I use this selection for getting events:
         final String SELECTION = CalendarContract.Events.CALENDAR_ID + "="
            + calendarId + " AND " + "("
            + CalendarContract.Events.DIRTY + "=" + 1 + " OR "
            + CalendarContract.Events.DELETED + "=" + 1 + ")" + " AND "
            + CalendarContract.Events.DTEND + " > "
            + Calendar.getInstance().getTimeInMillis();
    }
}
like image 108
yurezcv Avatar answered Oct 12 '22 23:10

yurezcv