android 監聽系統時區變化,日期變化,時間變化

1.  監聽時區變化:

配置:

<receiver android:name="com.gionee.ui.DateTimeReceiver">
            <intent-filter>
                <action android:name="android.intent.action.TIMEZONE_CHANGED"/>
            </intent-filter>
        </receiver>
複製代碼
private static final String ACTION_TIMEZONE_CHANGED = Intent.ACTION_TIMEZONE_CHANGED;

@Override
    public void onReceive(Context context, Intent intent) {
        if (DBG) {
            Log.d(LOG_TAG, "---onReceive() start!---");
        }

        String action = intent.getAction();

        if (ACTION_TIMEZONE_CHANGED.equals(action)) {

            if (DBG) {
                Log.d(LOG_TAG, "---TIMEZONE_CHANGED!---");
            }

        }

        if (DBG) {
            Log.d(LOG_TAG, "---onReceive() end!---");
        }
    }
複製代碼

 

2.  監聽日期變化

配置:

<action android:name="android.intent.action.DATE_CHANGED" />
複製代碼
private static final String ACTION_DATE_CHANGED = Intent.ACTION_DATE_CHANGED;

@Override
    public void onReceive(Context context, Intent intent) {
        if (DBG) {
            Log.d(LOG_TAG, "---onReceive() start!---");
        }

        String action = intent.getAction();

        if (ACTION_DATE_CHANGED.equals(action)) {

            if (DBG) {
                Log.d(LOG_TAG, "---DATE_CHANGED!---");
            }

        }
        
        if (DBG) {
            Log.d(LOG_TAG, "---onReceive() end!---");
        }
    }
複製代碼

 

3.  監聽時間變化

配置:

<action android:name="android.intent.action.TIME_SET" />
複製代碼
private static final String ACTION_DATE_CHANGED = Intent.ACTION_DATE_CHANGED;
    private static final String ACTION_TIME_CHANGED = Intent.ACTION_TIME_CHANGED;

@Override
    public void onReceive(Context context, Intent intent) {
        if (DBG) {
            Log.d(LOG_TAG, "---onReceive() start!---");
        }

        String action = intent.getAction();

        if (ACTION_DATE_CHANGED.equals(action)) {

            if (DBG) {
                Log.d(LOG_TAG, "---DATE_CHANGED!---");
            }

        }

        if (ACTION_TIME_CHANGED.equals(action)) {

            if (DBG) {
                Log.d(LOG_TAG, "---TIME_CHANGED!---");
            }

        }
        
        if (DBG) {
            Log.d(LOG_TAG, "---onReceive() end!---");
        }
    }
複製代碼

說明:

1.配置<action android:name="android.intent.action.TIME_SET" />,可同時監聽日期,時間的變化。
2.單獨監聽時間變化的配置,目前不瞭解。
3.配置中還可<action android:name="android.intent.action.TIME_TICK" />,代碼中可
複製代碼
private static final String ACTION_TIME_TICK = Intent.ACTION_TIME_TICK;

if (ACTION_TIME_TICK.equals(action)) {

            if (DBG) {
                Log.d(LOG_TAG, "---TIME_TICK!---");
            }

        }
複製代碼

此功能目前還不清楚用法。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章