Separate Tether summary "Off" to dedicated string ID
- Separate Tether summary "Off" to dedicated string ID for special language translation Bug: 228573128 Test: manual test make RunSettingsRoboTests ROBOTEST_FILTER=TetherPreferenceControllerTest Change-Id: I0615eb03d6329ef73b714af39e78836ae17ea408
This commit is contained in:
@@ -216,7 +216,7 @@ public class TetherPreferenceController extends AbstractPreferenceController imp
|
||||
}
|
||||
if (!hotSpotOn && !tetherOn) {
|
||||
// Both off
|
||||
mPreference.setSummary(R.string.off);
|
||||
updateSummaryToOff();
|
||||
} else if (hotSpotOn && tetherOn) {
|
||||
// Both on
|
||||
mPreference.setSummary(R.string.tether_settings_summary_hotspot_on_tether_on);
|
||||
@@ -232,7 +232,7 @@ public class TetherPreferenceController extends AbstractPreferenceController imp
|
||||
// Preference is not ready yet.
|
||||
return;
|
||||
}
|
||||
mPreference.setSummary(R.string.off);
|
||||
mPreference.setSummary(R.string.tether_preference_summary_off);
|
||||
}
|
||||
|
||||
class SettingObserver extends ContentObserver {
|
||||
|
Reference in New Issue
Block a user