android应用程序跳转到系统的各个设置页面

android应用程序跳转到系统的各个设置页面

android SDK文档中有这样一个类,android.provider.Settings类提供android系统各个页面的跳转常量:

使用实例例:startActivity(new Intent(Settings.ACTION_WIRELESS_SETTINGS)),即可跳到android手机 络设置页面。

如果要launch Mobile Networks Setting页面按如下方法:
Intent intent=new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);
ComponentName cName = new ComponentName(“com.android.phone”,”com.android.phone.Settings”);
intent.setComponent(cName);
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
显示设置,以允许配??置的APN

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_DATA_ROAMING_SETTINGS
选择of2G/3G显示设置

Activity Action: Show settings for selection of2G/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_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

声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2012年6月1日
下一篇 2012年6月1日

相关推荐