我的数据库有一个同步适配器,在应用程序使用的某些点上,它需要立即同步数据库。我想触发同步适配器,就好像它的同步时间弹出一样,然后重新建立同步时间(即距离'立即同步'事件4小时)。
答案 0 :(得分: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)