我的数据库有一个同步适配器,在应用程序使用的某些点,它现在需要同步数据库。我想触发同步适配器,就好像它的同步时间弹出一样,然后重新建立同步时间(即,从这个“现在同步”事件开始的 4 小时)。
问问题
5056 次
1 回答
4
我认为(未经测试)在 ContentResolver 中已经定义了更好的解决方案。
ContentResolver.requestSync(account, authority, extras);
因此可以执行以下操作:
AccountManager am = AccountManager.get(context);
Account account = null;
am.getAccountsByType(mytype);
for(Account a : accounts) {
if (am.getUserData(account, key)) {
account = a;
break;
}
}
Bundle extras = new Bundle();
extras.putString(EXTRA_mystuff, myvalue);
ContentResolver.requestSync(account, authority, extras)
于 2011-03-20T05:51:00.120 回答