I have a requirement to update the current time in my application as per device time format(12/24). I need any callback/listeners/receivers which will let me know that time format has been changed so that i can update time in my application accordingly.
I got the way to get current timeformat using below code snippet
String value = android.provider.Settings.System.getString(this.getContentResolver(), android.provider.Settings.System.TIME_12_24);
But looking for any callback which will let me know the same in run time.
Thanks in advance.