List of usage examples for android.content AbstractThreadedSyncAdapter subclass-usage
From source file com.roadwarrior.vtiger.syncadapter.SyncAdapter.java
/** * SyncAdapter implementation for syncing sample SyncAdapter contacts to the * platform ContactOperations provider. */ public class SyncAdapter extends AbstractThreadedSyncAdapter { private static final String TAG = "VTiger.SyncAdapter";
From source file at.bitfire.davdroid.mirakel.syncadapter.DavSyncAdapter.java
public abstract class DavSyncAdapter extends AbstractThreadedSyncAdapter implements Closeable { private final static String TAG = "davdroid.DavSyncAdapter"; @Getter private static String androidID;
From source file com.sintef_energy.ubisolar.adapter.UsageSyncAdapter.java
/**
* Created by perok on 26.03.14.
*
* The sync provider for devices and usage.
*
* http://udinic.wordpress.com/2013/07/24/write-your-own-android-sync-adapter/
From source file com.ptts.sync.SyncAdapter.java
/**
* Define a sync adapter for the app.
*
* <p>This class is instantiated in {@link SyncService}, which also binds SyncAdapter to the system.
* SyncAdapter should only be initialized in SyncService, never anywhere else.
*
From source file com.senechaux.rutino.syncadapter.SyncAdapter.java
/** * SyncAdapter implementation for syncing sample SyncAdapter contacts to the platform ContactOperations provider. */ public class SyncAdapter extends AbstractThreadedSyncAdapter { private static final String TAG = "SyncAdapter";
From source file de.dhbw.organizer.calendar.backend.syncadapter.SyncAdapter.java
public class SyncAdapter extends AbstractThreadedSyncAdapter { private static final String TAG = "SyncAdapter"; private final AccountManager mAccountManager;
From source file tech.salroid.filmy.syncs.FilmySyncAdapter.java
public class FilmySyncAdapter extends AbstractThreadedSyncAdapter { public static final int SYNC_INTERVAL = 60 * 180; // Interval at which to sync with the weather, in seconds. // 60 seconds (1 minute) * 180 = 3 hours
From source file ro.weednet.contactssync.syncadapter.SyncAdapter.java
import android.util.Log; import java.io.IOException; import java.util.List; public class SyncAdapter extends AbstractThreadedSyncAdapter {
From source file com.creationgroundmedia.popularmovies.sync.MovieSyncAdapter.java
/**
* This does the actual work of loading a list of popular movies from themoviedb and getting
* them into the local database managed by the content provider.
*
* The idea is to load a user specified number of the top most popular movies,
* adding any that are new, and finally, getting rid of any that aren't on the list
From source file com.clearcenter.mobile_demo.mdSyncAdapter.java
public class mdSyncAdapter extends AbstractThreadedSyncAdapter { private static final String TAG = "mdSyncAdapter"; private static final boolean NOTIFY_AUTH_FAILURE = true; private final AccountManager account_manager;