The method of jumping to some settings interface of the system in Android

1. Jump to the auxiliary function interface of the system

Intent intent = new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS);  
startActivity(intent);

2. Jump to the add account interface

Intent intent = new Intent(Settings.ACTION_ADD_ACCOUNT);  
startActivity(intent);

3. Jump to the interface of the system including the airplane mode

Intent intent = new Intent(Settings.ACTION_AIRPLANE_MODE_SETTINGS);  
startActivity(intent);

4. Jump to more connections or other connection interface of the system

Intent intent = new Intent(Settings.ACTION_WIRELESS_SETTINGS);  
startActivity(intent);

5. Jump to the APN setting interface of the system

Intent intent = new Intent(Settings.ACTION_APN_SETTINGS);  
startActivity(intent);

6. Jump to the application information interface of the app according to the package name

Uri packageURI = Uri.parse("package:" + "包名");
Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, packageURI);  
startActivity(intent);

7. Jump to the developer options interface of the system

Intent intent = new Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS);  
startActivity(intent);

8. Jump to the application management interface of the system (default application interface)

Intent intent = new Intent(Settings.ACTION_APPLICATION_SETTINGS);  
startActivity(intent);

or

Intent intent = new Intent(Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);  
startActivity(intent);

9. Jump to the application management interface of the system (all interfaces)

Intent intent = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);  
startActivity(intent);

10. Jump to the Bluetooth management interface of the system

Intent intent = new Intent(Settings.ACTION_BLUETOOTH_SETTINGS);  
startActivity(intent);

11. Jump to the SIM card and network management interface of the system

Intent intent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);  
startActivity(intent);

12. Jump to the language and time management interface of the system :

Intent intent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);  
startActivity(intent);

or

Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);  
startActivity(intent);

13. Jump to the About Phone interface of the system:

Intent intent = new Intent(Settings.ACTION_DEVICE_INFO_SETTINGS);  
startActivity(intent);

14. Jump to the display and brightness interface of the system

Intent intent = new Intent(Settings.ACTION_DISPLAY_SETTINGS);  
startActivity(intent);

15. Jump to the interactive screen saver interface of the system (API>=18)

Intent intent = new Intent(Settings.ACTION_DREAM_SETTINGS);  
startActivity(intent);

16. Jump to the system's storage and backup management interface

Intent intent = new Intent(Settings.ACTION_INTERNAL_STORAGE_SETTINGS);  
startActivity(intent);

or

Intent intent = new Intent(Settings.ACTION_MEMORY_CARD_SETTINGS);  
startActivity(intent);

or

Intent intent = new Intent(Settings.ACTION_PRIVACY_SETTINGS);  
startActivity(intent);

17. Jump to the language selection interface of the system

Intent intent = new Intent(Settings.ACTION_LOCALE_SETTINGS);  
startActivity(intent);

18. Jump to the system's location service interface

Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);  
startActivity(intent);

19. Jump to the network operator interface of the system

Intent intent = new Intent(Settings.ACTION_NETWORK_OPERATOR_SETTINGS);  
startActivity(intent);

20. Jump to the NFC sharing interface of the system (requires the mobile phone to support NFC)

Intent intent =  new Intent(Settings.ACTION_NFCSHARING_SETTINGS);  
startActivity(intent);

21. Jump to the NFC setting interface of the system (requires the mobile phone to support NFC and API>=16)

Intent intent = new Intent(Settings.ACTION_NFC_SETTINGS);  
startActivity(intent);

22. Jump to the security settings interface of the system

Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS);  
startActivity(intent);

23. Jump to the system settings interface

Intent intent =  new Intent(Settings.ACTION_SETTINGS);  
startActivity(intent);

24. Jump to the sound setting interface of the system

Intent intent =  new Intent(Settings.ACTION_SOUND_SETTINGS);  
startActivity(intent);

25. Jump to the account interface of the system

Intent intent = new Intent(Settings.ACTION_SYNC_SETTINGS);  
startActivity(intent);

26. Jump to the personal dictionary interface of the system

Intent intent = new Intent(Settings.ACTION_USER_DICTIONARY_SETTINGS);  
startActivity(intent);

27. Jump to the IP setting interface of the system

Intent intent = new Intent(Settings.ACTION_WIFI_IP_SETTINGS);  
startActivity(intent);

28. Jump to the WLAN interface of the system

Intent intent = new Intent(Settings.ACTION_WIFI_SETTINGS);
startActivity(intent);

refer to

Summary of the method of jumping to the system settings interface in Android

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325841601&siteId=291194637