2010-05-10 16:15:41 -04:00
|
|
|
package com.fsck.k9.helper;
|
|
|
|
|
|
|
|
import java.lang.reflect.Method;
|
2010-05-15 17:26:15 -04:00
|
|
|
|
|
|
|
import com.fsck.k9.K9;
|
|
|
|
|
2010-05-10 16:15:41 -04:00
|
|
|
import android.content.ContentResolver;
|
|
|
|
import android.content.Context;
|
2010-05-15 17:26:15 -04:00
|
|
|
import android.util.Log;
|
2010-05-10 16:15:41 -04:00
|
|
|
|
|
|
|
public class AutoSyncSdk4 implements IAutoSync
|
|
|
|
{
|
|
|
|
private Method mGetListenForNetworkTickles;
|
|
|
|
private Object mContentService;
|
|
|
|
|
|
|
|
public void initialize(Context context) throws NoSuchMethodException
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* There's no documented/official way to query the state of the
|
|
|
|
* auto-sync setting for a normal application in SDK 1.6/API 4.
|
2010-05-11 22:51:59 -04:00
|
|
|
*
|
2010-05-10 16:15:41 -04:00
|
|
|
* We use reflection to get an ContentService object, so we can call its
|
|
|
|
* getListenForNetworkTickles() method. This will return the current
|
|
|
|
* auto-sync state.
|
|
|
|
*/
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Method getContentService = ContentResolver.class.getMethod("getContentService");
|
|
|
|
mContentService = getContentService.invoke(null);
|
|
|
|
mGetListenForNetworkTickles = mContentService.getClass().getMethod("getListenForNetworkTickles");
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
throw new NoSuchMethodException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean getMasterSyncAutomatically()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return (Boolean) mGetListenForNetworkTickles.invoke(mContentService);
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
2010-05-15 17:26:15 -04:00
|
|
|
Log.e(K9.LOG_TAG, "Could not query for network tickle", e);
|
|
|
|
return true;
|
2010-05-10 16:15:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|