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