Back to project page inotes.
The source code is released under:
GNU General Public License
If you think the Android project inotes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.codeminders.inotes.sync; /*from w w w . java 2s . c om*/ import android.accounts.Account; import android.content.ContentResolver; import com.codeminders.inotes.Constants; public class SyncAccountInfo implements SyncInfo { private Account account; public SyncAccountInfo(Account account) { this.account = account; } public boolean isSyncActive() { return ContentResolver.isSyncActive(account, Constants.AUTHORITIES); } }