使用同步适配器自动同步本地数据库

时间:2011-03-22 08:04:10

标签: android adapter sync account

我正在使用同步适配器编写同步应用程序,并尝试自动同步本地数据库,第一次创建帐户时它工作正常但是当我在本地数据库中进行更改时,即使我设置了ContentResolver,它也不会自动同步.setSyncAutomatically(account,AUTHORITY,true)。

1 个答案:

答案 0 :(得分:0)

试试这个

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