Android 调用系统的设置项

来源:互联网 发布:淘宝考试管制刀具 编辑:程序博客网 时间:2024/05/22 14:20

调用方式:

Intent mIntent = new Intent();ComponentName comp = new ComponentName("com.android.settings", "com.android.settings.WirelessSettings");mIntent.setComponent(comp);mIntent.setAction("android.intent.action.VIEW");startActivity(mIntent);


com.android.settings.AccessibilitySettings 辅助功能设置
com.android.settings.ActivityPicker 选择活动
com.android.settings.ApnSettings APN设置
com.android.settings.ApplicationSettings 应用程序设置
com.android.settings.BandMode 设置GSM/UMTS波段
com.android.settings.BatteryInfo 电池信息
com.android.settings.DateTimeSettings 日期和时间设置
com.android.settings.DateTimeSettingsSetupWizard 日期和时间设置
com.android.settings.DevelopmentSettings 应用程序设置=》开发设置
com.android.settings.DeviceAdminSettings 设备管理器
com.android.settings.DeviceInfoSettings 关于手机
com.android.settings.Display 显示——设置显示字体大小及预览
com.android.settings.DisplaySettings 显示设置
com.android.settings.DockSettings 底座设置
com.android.settings.IccLockSettings SIM卡锁定设置
com.android.settings.InstalledAppDetails 语言和键盘设置
com.android.settings.LanguageSettings 语言和键盘设置
com.android.settings.LocalePicker 选择手机语言
com.android.settings.LocalePickerInSetupWizard 选择手机语言
com.android.settings.ManageApplications 已下载(安装)软件列表
com.android.settings.MasterClear 恢复出厂设置
com.android.settings.MediaFormat 格式化手机闪存
com.android.settings.PhysicalKeyboardSettings 设置键盘
com.android.settings.PrivacySettings 隐私设置
com.android.settings.ProxySelector 代理设置
com.android.settings.RadioInfo 手机信息
com.android.settings.RunningServices 正在运行的程序(服务)
com.android.settings.SecuritySettings 位置和安全设置
com.android.settings.Settings 系统设置
com.android.settings.SettingsSafetyLegalActivity 安全信息
com.android.settings.SoundSettings 声音设置
com.android.settings.TestingSettings 测试——显示手机信息、电池信息、使用情况统计、Wifi information、服务信息
com.android.settings.TetherSettings 绑定与便携式热点
com.android.settings.TextToSpeechSettings 文字转语音设置
com.android.settings.UsageStats 使用情况统计
com.android.settings.UserDictionarySettings 用户词典
com.android.settings.VoiceInputOutputSettings 语音输入与输出设置
com.android.settings.WirelessSettings 无线和网络设置

转自:http://www.cnblogs.com/bluestorm/p/3665555.html


另外一种方式

Uri packageURI = Uri.parse("package:" + "com.example.test");
Intent intent =  new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,packageURI);  
startActivity(intent);


 

String 

ACTION_ACCESSIBILITY_SETTINGS

Activity Action: Show settings for accessibility modules.

String 

ACTION_ADD_ACCOUNT

Activity Action: Show add account screen for creating a new account.

String 

ACTION_AIRPLANE_MODE_SETTINGS

Activity Action: Show settings to allow entering/exiting airplane mode.

String 

ACTION_APN_SETTINGS

Activity Action: Show settings to allow configuration of APNs.

String 

ACTION_APPLICATION_DETAILS_SETTINGS

Activity Action: Show screen of details about a particular application.

String 

ACTION_APPLICATION_DEVELOPMENT_SETTINGS

Activity Action: Show settings to allow configuration of application development-related settings.

String 

ACTION_APPLICATION_SETTINGS

Activity Action: Show settings to allow configuration of application-related settings.

String 

ACTION_BLUETOOTH_SETTINGS

Activity Action: Show settings to allow configuration of Bluetooth.

String 

ACTION_CAPTIONING_SETTINGS

Activity Action: Show settings for video captioning.

String 

ACTION_DATA_ROAMING_SETTINGS

Activity Action: Show settings for selection of 2G/3G.

String 

ACTION_DATE_SETTINGS

Activity Action: Show settings to allow configuration of date and time.

String 

ACTION_DEVICE_INFO_SETTINGS

Activity Action: Show general device information settings (serial number, software version, phone number, etc.).

String 

ACTION_DISPLAY_SETTINGS

Activity Action: Show settings to allow configuration of display.

String 

ACTION_DREAM_SETTINGS

Activity Action: Show Daydream settings.

String 

ACTION_INPUT_METHOD_SETTINGS

Activity Action: Show settings to configure input methods, in particular allowing the user to enable input methods.

String 

ACTION_INPUT_METHOD_SUBTYPE_SETTINGS

Activity Action: Show settings to enable/disable input method subtypes.

String 

ACTION_INTERNAL_STORAGE_SETTINGS

Activity Action: Show settings for internal storage.

String 

ACTION_LOCALE_SETTINGS

Activity Action: Show settings to allow configuration of locale.

String 

ACTION_LOCATION_SOURCE_SETTINGS

Activity Action: Show settings to allow configuration of current location sources.

String 

ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS

Activity Action: Show settings to manage all applications.

String 

ACTION_MANAGE_APPLICATIONS_SETTINGS

Activity Action: Show settings to manage installed applications.

String 

ACTION_MEMORY_CARD_SETTINGS

Activity Action: Show settings for memory card storage.

String 

ACTION_NETWORK_OPERATOR_SETTINGS

Activity Action: Show settings for selecting the network operator.

String 

ACTION_NFCSHARING_SETTINGS

Activity Action: Show NFC Sharing settings.

String 

ACTION_NFC_PAYMENT_SETTINGS

Activity Action: Show NFC Tap & Pay settings

This shows UI that allows the user to configure Tap&Pay settings.

String 

ACTION_NFC_SETTINGS

Activity Action: Show NFC settings.

String 

ACTION_PRINT_SETTINGS

Activity Action: Show the top level print settings.

String 

ACTION_PRIVACY_SETTINGS

Activity Action: Show settings to allow configuration of privacy options.

String 

ACTION_QUICK_LAUNCH_SETTINGS

Activity Action: Show settings to allow configuration of quick launch shortcuts.

String 

ACTION_SEARCH_SETTINGS

Activity Action: Show settings for global search.

String 

ACTION_SECURITY_SETTINGS

Activity Action: Show settings to allow configuration of security and location privacy.

String 

ACTION_SETTINGS

Activity Action: Show system settings.

String 

ACTION_SOUND_SETTINGS

Activity Action: Show settings to allow configuration of sound and volume.

String 

ACTION_SYNC_SETTINGS

Activity Action: Show settings to allow configuration of sync settings.

String 

ACTION_USER_DICTIONARY_SETTINGS

Activity Action: Show settings to manage the user input dictionary.

String 

ACTION_WIFI_IP_SETTINGS

Activity Action: Show settings to allow configuration of a static IP address for Wi-Fi.

String 

ACTION_WIFI_SETTINGS

Activity Action: Show settings to allow configuration of Wi-Fi.

String 

ACTION_WIRELESS_SETTINGS

Activity Action: Show settings to allow configuration of wireless controls such as Wi-Fi, Bluetooth and Mobile networks.

String 

AUTHORITY

String 

EXTRA_ACCOUNT_TYPES

Activity Extra: Limit available options in launched activity based on the given account types.

String 

EXTRA_AUTHORITIES

Activity Extra: Limit available options in launched activity based on the given authority.

String 

EXTRA_INPUT_METHOD_ID


详见:http://developer.android.com/reference/android/provider/Settings.html


0 2
原创粉丝点击