Intent intent = new Intent(Settings.ACTION_SETTINGS);
//测试为直接进入设置主界面里面包含有网络设置
Intent intent = new Intent(Settings.ACTION_AIRPLANE_MODE_SETTINGS);
//测试进入的是WLAN界面,也就是连接wifi的界面
Intent intent = new Intent(Settings.ACTION_WIFI_SETTINGS);
Intent intent = new Intent(Settings. ACTION_WIFI_SETTINGS);
Intent intent = new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);
Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, Uri.fromParts("package", mContext.getPackageName(), null));
或者
Intent intent = new Intent();
intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
intent.setData(Uri.fromParts("package", mContext.getPackageName(), null));
Intent intent = new Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS);
Intent intent = new Intent(Settings.ACTION_APPLICATION_SETTINGS);
//或者全部的
Intent intent = new Intent(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS);
//或者已安装的
Intent intent = new Intent(Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
Intent intent = new Intent(Settings.ACTION_BLUETOOTH_SETTINGS);
Intent intent = new Intent(Settings.ACTION_DATE_SETTINGS);
Intent intent = new Intent(Settings.ACTION_DEVICE_INFO_SETTINGS);
Intent intent = new Intent(Settings.ACTION_DISPLAY_SETTINGS);
Intent intent = new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS);
Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
Intent intent = new Intent(Settings.ACTION_LOCALE_SETTINGS);
//内部存储
Intent intent = new Intent(Settings.ACTION_INTERNAL_STORAGE_SETTINGS);
//记忆卡存储
Intent intent = new Intent(Settings.ACTION_MEMORY_CARD_SETTINGS);
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
Intent intent = new Intent(Settings.ACTION_NETWORK_OPERATOR_SETTINGS);
Intent intent = new Intent(Settings.ACTION_NFC_SETTINGS);
Intent intent = new Intent(Settings.ACTION_APN_SETTINGS);
Intent intent = new Intent(Settings.ACTION_PRIVACY_SETTINGS);
Intent intent = new Intent(Settings.ACTION_QUICK_LAUNCH_SETTINGS);
Intent intent = new Intent(Settings.ACTION_SEARCH_SETTINGS);
Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS);
Intent intent = new Intent(Settings.ACTION_SOUND_SETTINGS);
Intent intent = new Intent(Settings.ACTION_SYNC_SETTINGS);
Intent intent = new Intent(Settings.ACTION_ADD_ACCOUNT);
Intent intent = new Intent(Settings.ACTION_USER_DICTIONARY_SETTINGS);
Intent intent = new Intent(Settings.ACTION_WIFI_IP_SETTINGS);
Intent intent = new Intent(Settings.ACTION_DREAM_SETTINGS);