Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open "Backup and reset" in Settings Programmatically

Tags:

android

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?

like image 821
Milad Faridnia Avatar asked Feb 28 '15 11:02

Milad Faridnia


1 Answers

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);
like image 160
Bach Vu Avatar answered Sep 29 '22 05:09

Bach Vu