如何在Android上编写“立即同步”操作?

前端之家收集整理的这篇文章主要介绍了如何在Android上编写“立即同步”操作?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个用于我的数据库的同步适配器,在应用程序使用的某些点,它需要立即同步数据库.我想触发同步适配器,就好像它的同步时间弹出一样,然后重新建立同步时间(即从此’同步现在’事件开始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,extras)
原文链接:https://www.f2er.com/android/430344.html

猜你在找的Android相关文章