Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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);
    }
}