安卓从零开始学之打开系统设置界面(转自allegro_tyc的博客)

来源:互联网 发布:淘宝卖家延迟收货时间 编辑:程序博客网 时间:2024/05/01 03:08
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 无线和网络设置

使用下面两句之一可以实现
startActivity(new Intent(android.provider.Settings.ACTION_DATE_SETTINGS));
startActivityForResult(new Intent(android.provider.Settings.ACTION_DATE_SETTINGS), 0);

 总共可以使用的系统调用如下:
StringACTION_ACCESSIBILITY_SETTINGSActivity Action: Show settings for accessibility modules.StringACTION_ADD_ACCOUNTActivity Action: Show add account screen for creating a new account.StringACTION_AIRPLANE_MODE_SETTINGSActivity Action: Show settings to allow entering/exiting airplane mode.StringACTION_APN_SETTINGSActivity Action: Show settings to allow configuration of APNs.StringACTION_APPLICATION_DETAILS_SETTINGSActivity Action: Show screen of details about a particular application.StringACTION_APPLICATION_DEVELOPMENT_SETTINGSActivity Action: Show settings to allow configuration of application development-related settings.StringACTION_APPLICATION_SETTINGSActivity Action: Show settings to allow configuration of application-related settings.StringACTION_BLUETOOTH_SETTINGSActivity Action: Show settings to allow configuration of Bluetooth.StringACTION_DATA_ROAMING_SETTINGSActivity Action: Show settings for selection of 2G/3G.StringACTION_DATE_SETTINGSActivity Action: Show settings to allow configuration of date and time.StringACTION_DEVICE_INFO_SETTINGSActivity Action: Show general device information settings (serial number, software version, phone number, etc.).StringACTION_DISPLAY_SETTINGSActivity Action: Show settings to allow configuration of display.StringACTION_DREAM_SETTINGSActivity Action: Show Daydream settings.StringACTION_INPUT_METHOD_SETTINGSActivity Action: Show settings to configure input methods, in particular allowing the user to enable input methods.StringACTION_INPUT_METHOD_SUBTYPE_SETTINGSActivity Action: Show settings to enable/disable input method subtypes.StringACTION_INTERNAL_STORAGE_SETTINGSActivity Action: Show settings for internal storage.StringACTION_LOCALE_SETTINGSActivity Action: Show settings to allow configuration of locale.StringACTION_LOCATION_SOURCE_SETTINGSActivity Action: Show settings to allow configuration of current location sources.StringACTION_MANAGE_ALL_APPLICATIONS_SETTINGSActivity Action: Show settings to manage all applications.StringACTION_MANAGE_APPLICATIONS_SETTINGSActivity Action: Show settings to manage installed applications.StringACTION_MEMORY_CARD_SETTINGSActivity Action: Show settings for memory card storage.StringACTION_NETWORK_OPERATOR_SETTINGSActivity Action: Show settings for selecting the network operator.StringACTION_NFCSHARING_SETTINGSActivity Action: Show NFC Sharing settings.StringACTION_NFC_SETTINGSActivity Action: Show NFC settings.StringACTION_PRIVACY_SETTINGSActivity Action: Show settings to allow configuration of privacy options.StringACTION_QUICK_LAUNCH_SETTINGSActivity Action: Show settings to allow configuration of quick launch shortcuts.StringACTION_SEARCH_SETTINGSActivity Action: Show settings for global search.StringACTION_SECURITY_SETTINGSActivity Action: Show settings to allow configuration of security and location privacy.StringACTION_SETTINGSActivity Action: Show system settings.StringACTION_SOUND_SETTINGSActivity Action: Show settings to allow configuration of sound and volume.StringACTION_SYNC_SETTINGSActivity Action: Show settings to allow configuration of sync settings.StringACTION_USER_DICTIONARY_SETTINGSActivity Action: Show settings to manage the user input dictionary.StringACTION_WIFI_IP_SETTINGSActivity Action: Show settings to allow configuration of a static IP address for Wi-Fi.StringACTION_WIFI_SETTINGSActivity Action: Show settings to allow configuration of Wi-Fi.StringACTION_WIRELESS_SETTINGSActivity Action: Show settings to allow configuration of wireless controls such as Wi-Fi, Bluetooth and Mobile networks.StringAUTHORITY StringEXTRA_ACCOUNT_TYPESActivity Extra: Limit available options in launched activity based on the given account types.StringEXTRA_AUTHORITIESActivity Extra: Limit available options in launched activity based on the given authority.StringEXTRA_INPUT_METHOD_ID
0 0