同步帐户经理帐户

发布于 2024-11-28 22:01:36 字数 369 浏览 1 评论 0原文

我正在编写一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸里的那抹悲凉 2024-12-05 22:01:36

一个更简单的答案是简单地关闭全局同步启用标志,然后将其重新打开。在这种情况下,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文