I want to open Backup and reset in Android Setting. For example If you want to open Wi-Fi in Android settings you can use this code :
getApplicationContext().startActivity(new Intent(Settings.ACTION_WIFI_SETTINGS));
But I found nothing that could help me to open Backup and reset. Has anyone seen any implementations of how to do that?
I know this is old, But you can open Backup and Reset with this intent
Intent backupIntent = new Intent(Settings.ACTION_PRIVACY_SETTINGS);
startActivity(backupIntent);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With