开发者

Auto sync for local DB with sync adapters

开发者 https://www.devze.com 2023-02-18 18:13 出处:网络
I am writing a sync application using sync adapter,and try to sync lo开发者_如何学Gocal db automatically, First time when i create account it works fine but when i make changes in the local db, it is

I am writing a sync application using sync adapter,and try to sync lo开发者_如何学Gocal db automatically, First time when i create account it works fine but when i make changes in the local db, it is not syncing automatically even if i set ContentResolver.setSyncAutomatically(account, AUTHORITY, true).


try this

ContentResolver.setIsSyncable(account, authority, 1);
ContentResolver.setSyncAutomatically(account, authority, true);
ContentResolver.addPeriodicSync(account, authority, new Bundle(), 1);
0

精彩评论

暂无评论...
验证码 换一张
取 消