1. ACTION_ACCESSIBILITY_SETTINGS: // Jump to the auxiliary function page of the system

      Intent intent =  newIntent(Settings.ACTION_ACCESSIBILITY_SETTINGS);  
      startActivity(intent);  
    Copy the code
  2. ACTION_ADD_ACCOUNT: // display add account create a new account screen. [Test jump to wechat login interface]

     Intent intent =  newIntent(Settings.ACTION_ADD_ACCOUNT);  
     startActivity(intent);
    Copy the code
  3. ACTION_AIRPLANE_MODE_SETTINGS: // Flight mode, Wi-Fi and network Settings screen

      Intent intent =  newIntent(Settings.ACTION_AIRPLANE_MODE_SETTINGS);  
      startActivity(intent);
    Copy the code

    Or:

    ACTION_WIRELESS_SETTINGS:

           Intent intent =  newIntent(Settings.ACTION_WIFI_SETTINGS);  
           startActivity(intent);
           
    Copy the code
  4. ACTION_APN_SETTINGS: // Jump to the APN Settings page

     Intent intent =  newIntent(Settings.ACTION_APN_SETTINGS);  
     startActivity(intent);
    Copy the code
  5. ACTION_APPLICATION_DETAILS_SETTINGS: // Switch to the application information page of the system based on the package name

          Uri packageURI = Uri.parse("package:"+ "com.tencent.WBlog");
          Intent intent =  newIntent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,packageURI);  
          startActivity(intent);
    Copy the code
  6. ACTION_APPLICATION_DEVELOPMENT_SETTINGS: // Go to the developer options screen

     Intent intent =  newIntent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS);  
     startActivity(intent);
    Copy the code
  7. ACTION_APPLICATION_SETTINGS: // Jump to the application list interface

     Intent intent =  newIntent(Settings.ACTION_APPLICATION_SETTINGS);  
     startActivity(intent);
    Copy the code

    Or:

    ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS

       Intent intent =  newIntent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);  
       startActivity(intent);
    Copy the code

    Or:

    ACTION_MANAGE_APPLICATIONS_SETTINGS: // Jump to the application list interface

       Intent intent =  newIntent(Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);  
       startActivity(intent);
    Copy the code
  8. ACTION_BLUETOOTH_SETTINGS: // Jump to the bluetooth setting interface of the system

     Intent intent =  newIntent(Settings.ACTION_BLUETOOTH_SETTINGS);  
     startActivity(intent);
    Copy the code
  9. ACTION_DATA_ROAMING_SETTINGS: // Go to the mobile network Settings page

     Intent intent =  newIntent(Settings.ACTION_DATA_ROAMING_SETTINGS);  
     startActivity(intent);
    Copy the code
  10. ACTION_DATE_SETTINGS: // Jump to the date and time Settings screen

     Intent intent =  newIntent(Settings.ACTION_DATA_ROAMING_SETTINGS);  
     startActivity(intent);
    Copy the code
  11. ACTION_DEVICE_INFO_SETTINGS: // Jump to the mobile phone status page

     Intent intent =  newIntent(Settings.ACTION_DEVICE_INFO_SETTINGS);  
     startActivity(intent);
    Copy the code
  12. ACTION_DISPLAY_SETTINGS: // Jump to mobile phone display page

     Intent intent =  newIntent(Settings.ACTION_DISPLAY_SETTINGS);  
     startActivity(intent);
    Copy the code
  13. ACTION_DREAM_SETTINGS API 18 and above not tested

     Intent intent =  newIntent(Settings.ACTION_DREAM_SETTINGS);  
     startActivity(intent);
    Copy the code
  14. ACTION_INPUT_METHOD_SETTINGS: // Jump language and input device

     Intent intent =  newIntent(Settings.ACTION_INPUT_METHOD_SETTINGS);  
     startActivity(intent);
    Copy the code
  15. ACTION_INPUT_METHOD_SUBTYPE_SETTINGS [API 11 and above]

      Intent intent =  newIntent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);  
      startActivity(intent);
    Copy the code
  16. ACTION_INTERNAL_STORAGE_SETTINGS //

      Intent intent =  newIntent(Settings.ACTION_INTERNAL_STORAGE_SETTINGS);  
      startActivity(intent);
    Copy the code
ACTION_MEMORY_CARD_SETTINGS: // Intent Intent = newIntent(settings. ACTION_MEMORY_CARD_SETTINGS); startActivity(intent);Copy the code
  1. ACTION_LOCALE_SETTINGS: // Redirect language selection interface

       Intent intent =  newIntent(Settings.ACTION_LOCALE_SETTINGS);  
       startActivity(intent);
    Copy the code
  2. ACTION_LOCATION_SOURCE_SETTINGS: // Jump to location service interface [Manage installed applications].  Intent intent = newIntent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); startActivity(intent);Copy the code
  3. ACTION_NETWORK_OPERATOR_SETTINGS: // Jump to display Settings and select network operators.

       Intent intent =  newIntent(Settings.ACTION_NETWORK_OPERATOR_SETTINGS);  
       startActivity(intent);
        
    Copy the code
  4. ACTION_NFCSHARING_SETTINGS: // Display NFC sharing Settings. 【API 14 and above 】

       Intent intent =  newIntent(Settings.ACTION_NFCSHARING_SETTINGS);  
       startActivity(intent);
    Copy the code
  5. ACTION_NFC_SETTINGS: // Displays NFC Settings. This displays the user interface, allowing the NFC to be turned on or off. 【API 16 and above 】

       Intent intent =  newIntent(Settings.ACTION_NFC_SETTINGS);  
       startActivity(intent);
    Copy the code
  6. ACTION_PRIVACY_SETTINGS: // Jump to the backup and reset screen

       Intent intent =  newIntent(Settings.ACTION_PRIVACY_SETTINGS);  
       startActivity(intent);
    Copy the code
  7. ACTION_QUICK_LAUNCH_SETTINGS: // Jump to the quick startup Settings screen

        Intent intent =  newIntent(Settings.ACTION_QUICK_LAUNCH_SETTINGS);  
        startActivity(intent);
    Copy the code
  8. ACTION_SEARCH_SETTINGS: // Jump to the search Settings page

        Intent intent =  newIntent(Settings.ACTION_SEARCH_SETTINGS);  
        startActivity(intent);
    Copy the code
  9. ACTION_SECURITY_SETTINGS: // Go to the security Settings page

        Intent intent =  newIntent(Settings.ACTION_SECURITY_SETTINGS);  
        startActivity(intent);
    Copy the code
  10. ACTION_SETTINGS: // Jump to the Settings screen

         Intent intent =  newIntent(Settings.ACTION_SETTINGS);  
         startActivity(intent);
    Copy the code
  11. ACTION_SOUND_SETTINGS // Go to the sound Settings screen

           Intent intent =  newIntent(Settings.ACTION_SOUND_SETTINGS);  
           startActivity(intent);
    Copy the code
  12. ACTION_SYNC_SETTINGS: // Jump to the account synchronization page

          Intent intent =  newIntent(Settings.ACTION_SYNC_SETTINGS);  
          startActivity(intent);
    Copy the code
  13. ACTION_USER_DICTIONARY_SETTINGS: // intents = newIntent(settings. ACTION_USER_DICTIONARY_SETTINGS); startActivity(intent);Copy the code
  14. ACTION_WIFI_IP_SETTINGS: // Go to the IP setting interface. Intent Intent = newIntent(settings. ACTION_WIFI_IP_SETTINGS); startActivity(intent);Copy the code
  15. ACTION_WIFI_SETTINGS: // IntEnts = newIntent(settings. ACTION_WIFI_SETTINGS); startActivity(intent);Copy the code