I'm using a Broadcast receiver to know when time is changed.
public class TimeChangedReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "Your time was changed", Toast.LENGTH_SHORT).show();
}
}
I would like to know the system time before this receiver. To compare the time before whith the current time.