Its simple Question
I am want to get the Amount of Time change By User using system setting
I am using Broadcast Receiver,from below broadcast Receiver , I only get the notice that time has changed But how much Changed I don't no .
I want to get the whether the user incremented the time or decremented
And How much Incremented or Decremented ?
is it Possible to get this ?
if yes then how ?
Note : The IntentExtra didnt have any Extra information
<receiver android:name=".Receivers.TimeChangeReceivers">
<intent-filter >
<action android:name="android.intent.action.TIME_SET"></action>
</intent-filter>
</receiver>
My Class
public class TimeChangeReceivers extends BroadcastReceiver {
public static final String TAG= TimeChangeReceivers.class.getSimpleName ();
@Override
public void onReceive(Context context, Intent intent) {
Log.e ( TAG," Time Change!");
}
}