同步帐户经理帐户
我正在编写一个 Android 应用程序,它将开始同步“帐户和同步”设置下添加的所有帐户。我正在使用以下代码获取所有添加的帐户
AccountManager am = (AccountManager) getSystemService(Context.ACCOUNT_SERVICE);
Account[]acs = am.getAccounts();
获取帐户后,我想为每个帐户开始同步
for(Account ac:acs){
ContentResolver.requestSync(ac,authority,extras);
}
我的问题是如何我要获取检索到的帐户的权限吗?
I am writing an android application that will start sync for all accounts added under "Account & sync" settings.I am fetching all the added accounts using the following code
AccountManager am = (AccountManager) getSystemService(Context.ACCOUNT_SERVICE);
Account[]acs = am.getAccounts();
After fetching the account I want to start sync for each account
for(Account ac:acs){
ContentResolver.requestSync(ac,authority,extras);
}
My question is how do i fetch the authority for the retrieved account ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个更简单的答案是简单地关闭全局同步启用标志,然后将其重新打开。在这种情况下,Android 默认启动完全同步。
请参阅
ContentResolver.setMasterSyncAutomatically()
。您的应用程序需要清单中的适当权限才能更改该标志。
A far simpler answer is simply to turn off the global sync enabled flag and then turn it back on. Android starts a full sync by defualt in this case.
See
ContentResolver.setMasterSyncAutomatically()
.Your app will need appropriate permissions in the manifest to be allowed to change that flag.