When using Android software, you often need to open the system settings or information interface to set related system items or view related system information, in this case, we can use the following statement: (for example, open the "wireless and network settings" Interface)
Intent intent = new Intent ("/");
ComponentName cm = new ComponentName ("com. android. settings", "com. android. settings. WirelessSettings ");
Intent. setComponent (cm );
Intent. setAction ("android. intent. action. VIEW ");
Activity. startActivityForResult (intent, 0 );
After testing, the following fields can be used to open the corresponding system interface in the software.
Auxiliary Function settings of com. android. settings. AccessibilitySettings
Com. android. settings. ActivityPicker select activity
Com. android. settings. ApnSettings APN settings
Com. android. settings. ApplicationSettings application settings
Com. android. settings. BandMode: Set the GSM/UMTS band.
Com. android. settings. BatteryInfo battery Information
Com. android. settings. datetimeset date and Bashang travel network time settings
Com. android. settings. DateTimeSettingsSetupWizard date and time settings
Com. android. settings. DevelopmentSettings application settings = development settings
Com. android. settings. DeviceAdminSettings Device Manager
Com. android. settings. DeviceInfoSettings about mobile phone
Com. android. settings. Display -- set the font size and preview
Com. android. settings. DisplaySettings display settings
Com. android. settings. DockSettings base settings
Com. android. settings. IccLockSettings SIM card lock settings
Com. android. settings. InstalledAppDetails language and keyboard settings
Com. android. settings. LanguageSettings language and keyboard settings
Com. android. settings. LocalePicker
Com. android. settings. LocalePickerInSetupWizard
Com. android. settings. ManageApplications downloaded (installed) Software List
Com. android. settings. MasterClear restore factory settings
Com. android. settings. MediaFormat format mobile phone flash
Com. android. settings. physicalkeyboardset.pdf
Com. android. settings. PrivacySettings privacy settings
Com. android. settings. ProxySelector proxy settings
Com. android. settings. RadioInfo mobile phone information
Com. android. settings. RunningServices)
Com. android. settings. SecuritySettings location and Security settings
Com. android. settings. Settings system settings
Com. android. settings. SettingsSafetyLegalActivity Security Information
Com. android. settings. SoundSettings sound settings
Com. android. settings. TestingSettings test-display mobile phone information, battery information, usage statistics, Wifi information, and service information
Com. android. settings. TetherSettings binding and portable hotspot
Com. android. settings. TextToSpeechSettings text-to-speech setting
Com. android. settings. UsageStats usage statistics
Com. android. settings. UserDictionarySettings user dictionary
Com. android. settings. VoiceInputOutputSettings voice input and output settings
Com. android. settings. WirelessSettings wireless and network settings
Author: get123