Android Settings Jump

Source: Internet
Author: User

Android.provider.Settings. 1. Action_accessibility_settings://The Accessibility interface of the jump system

Intent Intent = new Intent (settings.action_accessibility_settings);
StartActivity (Intent);

2. Action_add_account://Show add account to create a new account screen. "Test Jump to login screen"

Intent Intent = new Intent (settings.action_add_account);
StartActivity (Intent);

3. Action_airplane_mode_settings://flight mode, wireless network and network Settings interface

Intent Intent = new Intent (settings.action_airplane_mode_settings);
StartActivity (Intent);

Or:

Action_wireless_settings:

Intent Intent = new Intent (settings.action_wifi_settings);
StartActivity (Intent);

4. Action_apn_settings://Jump APN Settings interface

Intent Intent = new Intent (settings.action_apn_settings);
StartActivity (Intent);

5. "Required Parameters" action_application_details_settings://Jump to the system's own application information interface based on package name

Uri Packageuri = Uri.parse ("Package:" + "Com.tencent.WBlog");
Intent Intent = new Intent (Settings.action_application_details_settings,packageuri);
StartActivity (Intent);

6. Action_application_development_settings://Jump Developer Options Interface

Intent Intent = new Intent (settings.action_application_development_settings);
StartActivity (Intent);

7. Action_application_settings://Jump App list interface

Intent Intent = new Intent (settings.action_application_settings);
StartActivity (Intent);

Or:

Action_manage_all_applications_settings//Jump to the application interface "all"

Intent Intent = new Intent (settings.action_manage_all_applications_settings);
StartActivity (Intent);

Or:

Action_manage_applications_settings://Jump App list interface "Installed"

Intent Intent = new Intent (settings.action_manage_applications_settings);
StartActivity (Intent);



8. Action_bluetooth_settings://Jump system Bluetooth Settings interface

Intent Intent = new Intent (settings.action_bluetooth_settings);
StartActivity (Intent);

9. Action_data_roaming_settings://Jump to the mobile network Settings screen

Intent Intent = new Intent (settings.action_data_roaming_settings);
StartActivity (Intent);

Action_date_settings://Jump Date Time setting interface

Intent Intent = new Intent (settings.action_data_roaming_settings);
StartActivity (Intent);

Action_device_info_settings://Jump Phone status interface

Intent Intent = new Intent (settings.action_device_info_settings);
StartActivity (Intent);

Action_display_settings://Jump Phone Display interface

Intent Intent = new Intent (settings.action_display_settings);
StartActivity (Intent);

Action_dream_settings "API 18 and above not tested"

Intent Intent = new Intent (settings.action_dream_settings);
StartActivity (Intent);


Action_input_method_settings://Jump language and input devices

Intent Intent = new Intent (settings.action_input_method_settings);
StartActivity (Intent);

Action_input_method_subtype_settings "API 11 and above"//Jump Language Selection Interface "multi-lingual selection"

Intent Intent = new Intent (settings.action_input_method_subtype_settings);
StartActivity (Intent);

Action_internal_storage_settings//Jump Storage Settings Interface "Internal Storage"

Intent Intent = new Intent (settings.action_internal_storage_settings);
StartActivity (Intent);

Or:

Action_memory_card_settings://Jump Storage Settings "memory card storage"

Intent Intent = new Intent (settings.action_memory_card_settings);
StartActivity (Intent);


Action_locale_settings://Jump Language selection Interface "English and Chinese only two options"

Intent Intent = new Intent (settings.action_locale_settings);
StartActivity (Intent);


Action_location_source_settings://Jump Location Service Interface "manage installed applications. 】

Intent Intent = new Intent (settings.action_location_source_settings);
StartActivity (Intent);

Action_network_operator_settings://Jump to display settings Select Network operator.

Intent Intent = new Intent (settings.action_network_operator_settings);
StartActivity (Intent);

Action_nfcsharing_settings://Show NFC sharing settings. "API 14 and above"

Intent Intent = new Intent (settings.action_nfcsharing_settings);
StartActivity (Intent);

Action_nfc_settings://Show NFC settings.  This shows the user interface, which allows NFC to turn on or off. "API 16 and above"

Intent Intent = new Intent (settings.action_nfc_settings);
StartActivity (Intent);

Action_privacy_settings://Jump to backup and reset interface

Intent Intent = new Intent (settings.action_privacy_settings);
StartActivity (Intent);

Action_quick_launch_settings://Jump Quick Start Setup interface

Intent Intent = new Intent (settings.action_quick_launch_settings);
StartActivity (Intent);

Action_search_settings://Jump to the Search Settings screen

Intent Intent = new Intent (settings.action_search_settings);
StartActivity (Intent);

Action_security_settings://Jump to the Security Settings screen

Intent Intent = new Intent (settings.action_security_settings);
StartActivity (Intent);

Action_settings://Jump to the settings screen

Intent Intent = new Intent (settings.action_settings);
StartActivity (intent);


Action_sound_settings//Jump to the Sound settings screen

Intent Intent = new Intent (settings.action_sound_settings);
StartActivity (Intent);

Action_sync_settings://Jump Account Sync Interface

Intent Intent = new Intent (settings.action_sync_settings);
StartActivity (Intent);

Action_user_dictionary_settings://Jump User Dictionary interface

Intent Intent = new Intent (settings.action_user_dictionary_settings);
StartActivity (Intent);

Action_wifi_ip_settings://Jump to the IP settings screen

Intent Intent = new Intent (settings.action_wifi_ip_settings);
StartActivity (Intent);

Action_wifi_settings://Jump WIFI list settings
Jump mode Intent Intent = new Intent (settings.*********); StartActivity (Intent);

Android Settings Jump

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.