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.
SyncAdapter? – LA_ Apr 3 '11 at 6:44