I use SyncAdapter in my application. So, synchronization can be either automatic (addPeriodicSync) or started manually (requestSync).

How can I know in the process of synchronization how it was started? Because, in case it is started manually (from app interface), I would like to show Toasts etc.

link|improve this question

Probably, I can pass some parameter in extras (of both functions). But how can I read that in SyncAdapter? – LA_ Apr 3 '11 at 6:44
feedback

2 Answers

Don't Toast to notify your user, except maybe for errors or exceptions. Users already see the circle-arrows "syncing" icon in the Status bar when it's in progress. I've had apps on my phone that Toast me during sync (every time) and it's annoying as hell... Especially because your users might be using a completely different app when your background sync starts and all of a sudden boom, some random Toast pops up telling them sync is in progress, and they think it comes from the active app, causing confusion.

If you want to show users your sync progress, look instead at this Google IO 2010 presentation: Develping RESTful Android Apps. It shows you how to put sync state into rows in your database, and update your UI. Much better model, as it gives you per-row granularity for information and only shows up if they're looking right at the data being synced.

link|improve this answer
I wanted to show Toasts with errors when user started Sync from my application manually. And when it is started automatically, no Toasts should be shown. – LA_ Apr 4 '11 at 15:37
feedback
up vote 1 down vote accepted

Looks like usage of extras is the best approach.

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.