在我的以下行AccountAuthenticatorActivity
之后,我尝试为帐户设置同步选项:addAccountExplicitly
ContentResolver.setIsSyncable(account, authority, 1);
ContentResolver.setSyncAutomatically(account, authority, true);
int seconds = getResources().getInteger(R.integer.syncFrequencySeconds);
ContentResolver.addPeriodicSync(account, authority, new Bundle(), seconds);
syncFrequencySeconds
设置为 86400(每 24 小时)。但是我的同步适配器仍然每分钟触发一次。我究竟做错了什么?(同步本身没有任何问题)