是否可以检索帐户上次同步的时间,例如系统设置 - >帐户和同步应用程序?我使用的是Android 2.2.
查看2.2源代码AccountSyncSettings.java,我看到状态是使用以下方法检索的:
SyncStatusInfo status = ContentResolver.getSyncStatus(account, authority);
Run Code Online (Sandbox Code Playgroud)
但是SyncStatusInfo和getSyncStatus似乎不是公共API的一部分(用@hide标记).有没有其他方法来获取此信息?