I have a sync adapter for my DB and at certain points in the application usage, it needs to sync the DB now. I would like to trigger the sync adapter as if its sync-time popped and then re-establish the sync time (i.e., 4 hours from this 'sync now" event).

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I think (not tested) a better solution is already defined in the ContentResolver.

ContentResolver.requestSync(account, authority, extras);

so one might do the following:

AccountManager am = AccountManager.get(context);
Account account =  null;
am.getAccountsByType(mytype);
for(Account a : accounts) {
    if (am.getUserData(account, key)) {
        account = a;
        break;
    }
}
Bundle extras = new Bundle();
extras.putString(EXTRA_mystuff, myvalue);
ContentResolver.requestSync(account, authority, extras)
link|improve this answer
feedback

You can find solution, which runs sync immediately and works with background data disabled here:

Android - run your SyncAdapter immediately

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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