FileDocCategorySizeDatePackage
TimeChangeReceiver.javaAPI DocAndroid 1.5 API1511Wed May 06 22:42:48 BST 2009com.android.providers.calendar

TimeChangeReceiver

public class TimeChangeReceiver extends android.content.BroadcastReceiver

Fields Summary
static final String
TAG
static final boolean
LOGD
CalendarAppWidgetProvider
mAppWidgetProvider
Constructors Summary
Methods Summary
public voidonReceive(android.content.Context context, android.content.Intent intent)

    
    
          
        // Pass time-changed notification through to any widgets
        if (LOGD) Log.d(TAG, "Received time changed action=" + intent.getAction());
        
        // Consider ignoring this update request if only TIME_CHANGED
        boolean considerIgnore = (Intent.ACTION_TIME_CHANGED.equals(intent.getAction()));
        mAppWidgetProvider.timeUpdated(context, considerIgnore);