本文整理汇总了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
+ ".");
}
}
示例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);
}
示例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);
}
}
}