gpt4 book ai didi

Android 多个同步适配器项目,如 Google 帐户?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:53:37 24 4
gpt4 key购买 nike

我目前将我的 Android 应用程序设置为使用 Android 的 AccountManager 功能,使用 SyncAdapter 和经过身份验证的帐户自动执行同步。

我只有 1 个同步适配器在运行,它同步所有内容,但我想将它分开,以不同的时间间隔对不同的内容执行同步。

我怎样才能像 Google 那样拥有多个同步项?

Google account screenshot

最佳答案

您只需定义多个同步适配器,使用相同的帐户类型。

list 包含:

<service android:exported="true" android:name="com.example.FooSyncAdapterService">
<intent-filter>
<action android:name="android.content.SyncAdapter" />
</intent-filter>
<meta-data android:name="android.content.SyncAdapter" android:resource="@xml/syncadapter_foo" />
</service>
<service android:exported="true" android:name="com.example.BarSyncAdapterService">
<intent-filter>
<action android:name="android.content.SyncAdapter" />
</intent-filter>
<meta-data android:name="android.content.SyncAdapter" android:resource="@xml/syncadapter_bar" />
</service>

syncdataper_foo

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="foo"
android:accountType="com.example"
android:allowParallelSyncs="true" />

syncdataper_bar

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="bar"
android:accountType="com.example"
android:allowParallelSyncs="true" />

请注意,在帐户类型为“com.google”的情况下,同步适配器甚至由不同的应用程序(Drive、Docs、Sheets、Gmail、Calendar 等)提供。

关于Android 多个同步适配器项目,如 Google 帐户?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30998063/

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