Migrate to CompoundButton.OnCheckedChangeListener
Switch and SwitchCompat are both CompoundButton. Using CompoundButton in Java will helps migration in the future. Bug: 306658427 Test: manual - check Settings pages Change-Id: If2e08a9a9557ec66a3b31ef18cd2e15943098a59
This commit is contained in:
@@ -104,7 +104,7 @@ public class NightDisplayActivationPreferenceControllerTest {
|
||||
|
||||
final NightDisplayActivationPreferenceController controller =
|
||||
new NightDisplayActivationPreferenceController(mContext, "night_display_activated");
|
||||
controller.onSwitchChanged(null, true);
|
||||
controller.onCheckedChanged(null, true);
|
||||
|
||||
assertThat(mColorDisplayManager.isNightDisplayActivated()).isEqualTo(true);
|
||||
}
|
||||
@@ -115,7 +115,7 @@ public class NightDisplayActivationPreferenceControllerTest {
|
||||
|
||||
final NightDisplayActivationPreferenceController controller =
|
||||
new NightDisplayActivationPreferenceController(mContext, "night_display_activated");
|
||||
controller.onSwitchChanged(null, false);
|
||||
controller.onCheckedChanged(null, false);
|
||||
|
||||
assertThat(mColorDisplayManager.isNightDisplayActivated()).isEqualTo(false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user