当前位置: 首页>>代码示例>>Java>>正文


Java ContentResolver.cancelSync方法代码示例

本文整理汇总了Java中android.content.ContentResolver.cancelSync方法的典型用法代码示例。如果您正苦于以下问题:Java ContentResolver.cancelSync方法的具体用法?Java ContentResolver.cancelSync怎么用?Java ContentResolver.cancelSync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.content.ContentResolver的用法示例。


在下文中一共展示了ContentResolver.cancelSync方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: updateSync

import android.content.ContentResolver; //导入方法依赖的package包/类
/**
 * Updates ContentResolver sync settings for an Account's specified SyncAdapter.
 *
 * <p>Sets an accounts SyncAdapter (selected based on authority) to sync/not-sync automatically
 * and immediately requests/cancels a sync.
 *
 * <p>updateSync should always be called under {@link AccountSnippet#mLock} write lock to avoid
 * flapping between the getSyncAutomatically and setSyncAutomatically calls.
 *
 * @param account A Google Account.
 * @param authority The authority of a content provider that should (not) be synced.
 * @param sync Whether or not the account's content provider should be synced.
 */
private void updateSync(Account account, String authority, boolean sync) {
    if (ContentResolver.getSyncAutomatically(account, authority) != sync) {
        ContentResolver.setSyncAutomatically(account, authority, sync);
        if (sync) {
            ContentResolver.requestSync(account, authority, new Bundle());
        } else {
            ContentResolver.cancelSync(account, authority);
        }
        Log.i(
                "Set sync to "
                        + sync
                        + " for account "
                        + account
                        + ", adapter "
                        + authority
                        + ".");
    }
}
 
开发者ID:google,项目名称:mobly-bundled-snippets,代码行数:32,代码来源:AccountSnippet.java

示例2: disableSync

import android.content.ContentResolver; //导入方法依赖的package包/类
public static void disableSync(Context context) {
    Account account = makeAccount(context);
    ContentResolver.cancelSync(account, GigApplication.getSyncAuthority());
    ContentResolver.setIsSyncable(account, GigApplication.getSyncAuthority(), 0);
}
 
开发者ID:andreybgm,项目名称:gigreminder,代码行数:6,代码来源:SyncManager.java

示例3: updateSync

import android.content.ContentResolver; //导入方法依赖的package包/类
static public void updateSync(Context context) {
    String accountType = context.getResources().getString(R.string.account_type);

    SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(context);
    String syncFreq = pref.getString(context.getResources().getString(R.string.pref_sync_frequency),
                                     context.getResources().getString(R.string.pref_sync_frequency_default_value));
    assert(syncFreq != null);
    int syncInterval = Integer.parseInt(syncFreq);

    Logger logger = Logger.getInstance(context);

    for (Account account : AccountManager.get(context).getAccountsByType(accountType)) {
        Bundle extras = new Bundle();
        extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL,true);
        extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);

        ContentResolver.cancelSync(account, CalendarContract.AUTHORITY);
        if (syncInterval == 0) {
            continue;
        }

        // Schedule periodic sync based on current configuration
        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, syncInterval / 3)
                    .setSyncAdapter(account, CalendarContract.AUTHORITY)
                    .setExtras(new Bundle()).build();
            ContentResolver.requestSync(request);
            logger.info(TAG, "Scheduled periodic sync for account %s using requestSync, interval: %d",
                        account.name, syncInterval);
        } else {
            ContentResolver.addPeriodicSync(account, CalendarContract.AUTHORITY, new Bundle(), syncInterval);
            logger.info(TAG, "Scheduled periodic sync for account %s using addPeriodicSync, interval: %d",
                        account.name, syncInterval);
        }
    }
}
 
开发者ID:danvratil,项目名称:FBEventSync,代码行数:39,代码来源:CalendarSyncAdapter.java


注:本文中的android.content.ContentResolver.cancelSync方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。