Include subid in WiFi calling intent to settings
Include the subid extra in intent to start
WifiCallingSettingsActivity in order to have it load
the tab containing the correct WiFi calling information.
Bug: 117135894
Test: Manual
Change-Id: Idc83d496ae3262ae31a546c4c85eed6124ba3243
diff --git a/src/com/android/phone/CallFeaturesSetting.java b/src/com/android/phone/CallFeaturesSetting.java
index c9fd205..ffb7292 100644
--- a/src/com/android/phone/CallFeaturesSetting.java
+++ b/src/com/android/phone/CallFeaturesSetting.java
@@ -442,6 +442,10 @@
}
}
mButtonWifiCalling.setSummary(resId);
+ Intent intent = mButtonWifiCalling.getIntent();
+ if (intent != null) {
+ intent.putExtra(Settings.EXTRA_SUB_ID, mPhone.getSubId());
+ }
prefSet.addPreference(mButtonWifiCalling);
}