gpt4 book ai didi

android - 列出所选帐户支持的权限

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:39:57 26 4
gpt4 key购买 nike

我正在尝试开发一个应用程序,它使用 ContentResolver.requestSync(account, authority, extras); 仅同步选定的帐户。

我能够通过分别使用 com.android.contactscom.android.calendar 作为 sync 联系人和日历权限

但是,有什么方法可以获取特定帐户支持的权限列表吗?

另外,使用null作为authority有什么作用?

最佳答案

使用getSyncAdapterTypes()获取有关系统已知的 SyncAdapters 的信息。

SyncAdapterType[] types = ContentResolver.getSyncAdapterTypes();
for (SyncAdapterType type : types) {
if (yourAccount.type.equals(type.accountType)) {
boolean isSyncable = ContentResolver.getIsSyncable(yourAccount, type.authority) > 0;
if (isSyncable) {
ContentResolver.requestSync(yourAccount, type.authority, extras);
}
}
}

别忘了 getIsSyncable()方法需要 READ_SYNC_SETTINGS许可。

关于android - 列出所选帐户支持的权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11662732/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com