Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

im trying to start the calendar sync programatically using this code

Bundle bundle = new Bundle();
bundle.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
bundle.putBoolean(ContentResolver.SYNC_EXTRAS_FORCE, true);
bundle.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
bundle.putBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_SETTINGS, true);

ContentResolver.requestSync(accounts[0], "com.android.calendar", bundle);

i want a way so i can know when sync complete so i can read data from the calendar i tried doing this

while (ContentResolver.isSyncActive(accounts[0], "com.android.calendar")) {
System.out.println("looping: " + i);
}

readLocalCalendar();
readLocalEvents();

but the system exit the loop before the sync ends and i can still see the sync sign at the status bar, so any help so i can read calendar events after sync completle done ??

thanks

share|improve this question

4 Answers

up vote 0 down vote accepted

Another option would be to register a broadcast receiver to tell you when the sync is finished like this:

public class UpdateableActivity extends Activity {
    public static final String ACTION_FINISHED_SYNC = "your.package.ACTION_FINISHED_SYNC";
    private static IntentFilter syncIntentFilter = new IntentFilter(ACTION_FINISHED_SYNC);
    private BroadcastReceiver syncBroadcastReceiver = new BroadcastReceiver() {
        @Override public void onReceive(Context context, Intent intent) {
            // update your views
        }
    };
    @Override protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // register for sync
        registerReceiver(syncBroadcastReceiver, syncIntentFilter);
        // do your creating magic
    }
}

Inside your SyncAdapter use this when done:

getContext().sendBroadcast(new Intent(UpdateableActivity.ACTION_FINISHED_SYNC));  

You can also use this for when starting or updating the status of the sync ;)

share|improve this answer

Use ContentResolver.addStatusChangeListener (int mask, SyncStatusObserver callback) to get notified of changes in sync status. docs

Please do not loop forever, its really bad design. Using the above method everything is asynchronous so you don't waste any cpu cycles.

You could also use ContentResolver.registerContentObserver (Uri uri, boolean notifyForDescendents, ContentObserver observer) docs to get notified in changes on a specific URI (like the calendar's URI)

share|improve this answer
thank you , but i tried the SyncStatusObserver , but i faced a problem, because these two methods "readLocalCalendar(); readLocalEvents()" have effects on the interface , so an exception is fired saying that i cant modfy the view from another thread !! this is the exception (E/JavaBinder(12336): android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.) – user935143 Feb 24 '12 at 19:53
@user935143 Use a handler and post back to the UI thread. – smith324 Feb 24 '12 at 22:44

using the addStatusChangeListener actually worked for me .

here's a reference .

don't forget to add the needed permissions .

share|improve this answer

try an AsyncTask :

private class CustomTask extends AsyncTask<Void, Void, Void>{

      @Override
      protected Void doInBackground(Void... params) {
       // TODO sync your calendar
      }

      protected void onProgressUpdate(Void... progress) {
        //TODO display a spinner or something else to show progress
      }

      protected void onPostExecute(Void t){
       //TODO what you want when doInBackground has finished

      }

}

Good luck !

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.