Android doesn\'t appear to provide a way for a user application to change the system time. What I would like to do instead is to get the user to change the time. It is easy
In case someone wants to open from ADB
adb shell am start -a android.settings.DATE_SETTINGS
Is it possible to link directly to the set time option?
Try:
startActivity(new Intent(android.provider.Settings.ACTION_DATE_SETTINGS));
Is it possible to check that the user set the time correctly?
:: shrug ::
After the application gets control again, examine the time.