我正在编写一个使用同步适配器同步数据的应用程序。
我已经阅读了文档,我很确定我理解它是如何工作的。我的大部分同步适配器都是按照Udi Cohen编写的great guide进行的。
但是我确实遇到了一个我似乎无法解决的问题,那就是在安装我的应用程序时自动启用同步。
当我的应用程序运行时,它会创建一个同步适配器和一个帐户,执行您希望它完成的所有工作,这很棒。但是,如果我转到设置>帐户> '我的应用',同步已关闭。无论如何我可以让它自动启用吗?
Screenshot of Accounts > 'My App'
设置同步适配器时,我的代码如下所示:
if(accountManager.addAccountExplicitly(account,null,null))
{
// Inform the system that this account supports sync
ContentResolver.setIsSyncable(account, CONTENT_AUTHORITY, 1);
// Inform the system that this account is eligible for auto sync
ContentResolver.setSyncAutomatically(account, CONTENT_AUTHORITY, true);
// Recommend a schedule for auto sync
ContentResolver.addPeriodicSync(account, CONTENT_AUTHORITY, new Bundle(), SYNC_FREQUENCY);
newAccount = true;
}
通过阅读同步适配器,我相信ContentResolver.setSyncAutomatically()
是用于自动启用同步的正确方法。
我也试过设置ContentResolver.setMasterSyncAutomatically(true);
,但这似乎没有任何效果。
我在AndroidManifest中声明了android.permission.WRITE_SYNC_SETTINGS
权限,所以这不是问题所在。我的项目中也有同步服务和xml文件。我在下面附上了这些代码。
还有其他人有过类似的问题吗?这可能是权限问题吗? 如果有人有任何建议我会很乐意尝试。感谢。
的AndroidManifest.xml
<service
android:name=".syncadapter.CalendarSyncService"
android:exported="true"
android:process=":sync">
<intent-filter>
<action android:name="android.content.SyncAdapter"/>
</intent-filter>
<meta-data
android:name="android.content.SyncAdapter"
android:resource="@xml/calendar_syncadapter"/>
</service>
syncadapter.xml
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="com.companyname.rostering"
android:allowParallelSyncs="true"
android:contentAuthority="com.android.calendar"
android:isAlwaysSyncable="true"
android:supportsUploading="true"
android:userVisible="true"/>
答案 0 :(得分:4)
我最终发现了导致我的问题的原因。
在我的syncadapter.xml中,我的内容权限设置为android:contentAuthority="com.android.calendar"
。
但是,在我使用ContentResolver.setSyncAutomatically(account, CONTENT_AUTHORITY, true);
将同步设置为自动的代码中,我的内容权限值实际设置为与XML中的内容真实性不同。
设置同步适配器时的内容权限必须与XML中使用的内容权限相匹配。
答案 1 :(得分:0)
将您的清单更改为以下内容:
<service
android:name=".SyncService"
android:exported="true"
>
<intent-filter>
<action android:name="android.content.SyncAdapter" />
</intent-filter>
<meta-data
android:name="android.content.SyncAdapter"
android:resource="@xml/syncadapter" />
</service>
在您的syncadapter.xml
中有以下属性:
<?xml version="1.0" encoding="utf-8"?>
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="@string/content_authority"
android:accountType="@string/sync_account_type"
android:isAlwaysSyncable="true" />
我查看了提供的教程链接,android:isAlwaysSyncable
是false
,所以我认为将其设为真可以解决问题
<强>更新强>
另一件事是,如果您在大于KITKAT的版本上安装应用程序,那么您可能想要更改调用addPeriodicSync的方式:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
// we can enable inexact timers in our periodic sync
SyncRequest request = new SyncRequest.Builder().
syncPeriodic(syncInterval, flexTime).
setSyncAdapter(account, authority).
setExtras(new Bundle()).build();
ContentResolver.requestSync(request);
} else {
ContentResolver.addPeriodicSync(account,
authority, new Bundle(), syncInterval);