ACTION_SETTING_RESTORED constant
Broadcast action: report that a settings element is being restored from backup. The intent contains four extras: EXTRA_SETTING_NAME is a string naming the restored setting, EXTRA_SETTING_NEW_VALUE is the value being restored, EXTRA_SETTING_PREVIOUS_VALUE is the value of that settings entry prior to the restore operation, and EXTRA_SETTING_RESTORED_FROM_SDK_INT is the version of the SDK that the setting has been restored from (corresponds to {@link android.os.Build.VERSION#SDK_INT}). The first three values are represented as strings, the fourth one as int.
This broadcast is sent only for settings provider entries known to require special handling around restore time. These entries are found in the BROADCAST_ON_RESTORE table within the provider's backup agent implementation.
@see #EXTRA_SETTING_NAME @see #EXTRA_SETTING_PREVIOUS_VALUE @see #EXTRA_SETTING_NEW_VALUE @see #EXTRA_SETTING_RESTORED_FROM_SDK_INT {@hide}
Implementation
static const String ACTION_SETTING_RESTORED =
"android.os.action.SETTING_RESTORED";