我现在试图创建一个同步适配器几个小时。
始终停用同步设置。为什么呢?
AndroidManifest
<provider
android:name="com.example.authenticating.DataProvider"
android:authorities="@string/content_authority"
android:exported="false"
android:multiprocess="true"
android:syncable="true" />
<service
android:name="com.example.authenticating.AuthenticatationService"
android:exported="true"
android:process=":auth">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
syncadapter.xml
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="@string/content_authority"
android:accountType="@string/sync_account_type"
android:userVisible="false"
android:supportsUploading="false"
android:allowParallelSyncs="false"
android:isAlwaysSyncable="true" />
添加适配器
Account account = new Account(getString(R.string.sync_account_name), getString(R.string.sync_sync_account_type_name));
ContentResolver.setIsSyncable(account, getString(R.string.content_authority), 1);
accountManager.addAccountExplicitly(account, "", null);
答案 0 :(得分:1)
如果您想执行手动同步,则必须致电:
Bundle settings = new Bundle();
settings.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
settings.putBooleanContentResolver.SYNC_EXTRAS_EXPEDITED, true);
ContentResolver.requestSync(mAccount, AUTHORITY, settingsBundle);
答案 1 :(得分:0)
如果要启用同步适配器,则需要将auto-sync设置为true,即:
ContentResolver.setSyncAutomatically(mAccount, AUTHORITY, true);
这会在您的帐户下设置支票,并在设备获得网络痒时启用同步适配器(请参阅here) 确保向您的清单添加以下权限:
android.permission.WRITE_SYNC_SETTINGS
文档没有明确说明任何内容,但据我所知,即使您没有“启用”同步适配器作为“自动同步”,它仍然可以与您手动同步或定期同步就此而言。