Java tutorial
//package com.java2s; import android.content.ContentResolver; public class Main { public static void toggleSync() { ContentResolver.setMasterSyncAutomatically(!isSyncEnabled()); } public static boolean isSyncEnabled() { return ContentResolver.getMasterSyncAutomatically();// .setSyncAutomatically(account, // authority, // true/false); } }