Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用同步适配器编写同步应用程序,并尝试自动同步本地数据库,第一次创建帐户时它工作正常,但是当我在本地数据库中进行更改时,即使我设置 ContentResolver.setSyncAutomatically,它也不会自动同步(帐户,权威,真实)。
尝试这个
ContentResolver.setIsSyncable(account, authority, 1); ContentResolver.setSyncAutomatically(account, authority, true); ContentResolver.addPeriodicSync(account, authority, new Bundle(), 1);