Back to project page Sunshine.
The source code is released under:
Apache License
If you think the Android project Sunshine 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.example.android.sunshine.app.sync; /*from w w w .j a va2 s . c o m*/ import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.util.Log; public class SunshineSyncService extends Service { private static final Object sSyncAdapterLock = new Object(); private static SunshineSyncAdapter sSunshineSyncAdapter = null; @Override public void onCreate() { Log.d("SunshineSyncService", "onCreate - SunshineSyncService"); synchronized (sSyncAdapterLock) { if (sSunshineSyncAdapter == null) { sSunshineSyncAdapter = new SunshineSyncAdapter(getApplicationContext(), true); } } } @Override public IBinder onBind(Intent intent) { return sSunshineSyncAdapter.getSyncAdapterBinder(); } }