Is there a way to detect when the Android system clock has been reset by the user in Android?
I\'m designing an app which uses system time to determ
We can use both TIME_SET and TIMEZONE_CHANGED.
TIME_SET
TIMEZONE_CHANGED
TimeChangedReceiver.java
public class TimeChangedReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Toast.makeText(context, "time change " + intent.getAction(), Toast.LENGTH_SHORT).show(); } }