Broadcast receiver broadcast receiver

I have a receiver that listens for a TIME_SET action event.

but sometimes I get an intentional action without accidentally changing the time. please, help. thanks in advance.

<receiver android:name="......DateTimeChange" >
        <intent-filter android:priority="0" >
            <action android:name="android.intent.action.TIME_SET" />
            <action android:name="android.intent.action.DATE_CHANGED" />
        </intent-filter>
    </receiver>

      

+3


source to share





All Articles