Open "Backup and reset" in Settings Programmatically
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?
仅查看设置参考文档,没有直接意图使用Intent机制直接打开备份和重置设置!
链接地址: http://www.djcxy.com/p/25172.html下一篇: 以编程方式在设置中打开“备份和重置”