When I fire the system intent, the Android device opens the wrong settings page. I tried to open the Data Roaming setting page with the below code, but the device opened the settings page in which data roaming option is not present.
if (bv < Build.VERSION_CODES.JELLY_BEAN) {
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);
} else {
Intent intent = new Intent();
intent.setAction(android.provider.Settings.ACTION_DATA_ROAMING_SETTINGS);
startActivity(intent);
}