syncadapter without internet connection

后端 未结 5 1463
小鲜肉
小鲜肉 2021-01-13 10:10

I have a sync adapter that works fine. It does not need internet connection because it needs to sync the addressbook with another local storage (my application). When the Wi

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-13 10:29

    Add the extra SYNC_EXTRAS_MANUAL before calling requestSync(account,authority, extras);

    extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
    ContentResolver.requestSync(account,authority, extras);
    

提交回复
热议问题