Revert "Migrate to CompoundButton.OnCheckedChangeListener"
Revert submission 25147565-onSwitchChanged-CompoundButton Reason for revert: breaking builds Bug:309601476 Reverted changes: /q/submissionid:25147565-onSwitchChanged-CompoundButton Change-Id: Ie746db87d9c642599593aa3d5e5baf6b7ba89c0e
This commit is contained in:
committed by
Android (Google) Code Review
parent
71d1f021af
commit
8979681a8d
@@ -160,7 +160,7 @@ public class DevelopmentSettingsDashboardFragmentTest {
|
||||
Settings.Global.putInt(mContext.getContentResolver(),
|
||||
Settings.Global.DEVELOPMENT_SETTINGS_ENABLED, 0);
|
||||
|
||||
mDashboard.onCheckedChanged(null, false /* isChecked */);
|
||||
mDashboard.onSwitchChanged(null, false /* isChecked */);
|
||||
assertThat(ShadowEnableDevelopmentSettingWarningDialog.mShown).isFalse();
|
||||
}
|
||||
|
||||
@@ -172,7 +172,7 @@ public class DevelopmentSettingsDashboardFragmentTest {
|
||||
Settings.Global.putInt(mContext.getContentResolver(),
|
||||
Settings.Global.DEVELOPMENT_SETTINGS_ENABLED, 0);
|
||||
|
||||
mDashboard.onCheckedChanged(null, true /* isChecked */);
|
||||
mDashboard.onSwitchChanged(null, true /* isChecked */);
|
||||
assertThat(ShadowEnableDevelopmentSettingWarningDialog.mShown).isTrue();
|
||||
}
|
||||
|
||||
@@ -184,7 +184,7 @@ public class DevelopmentSettingsDashboardFragmentTest {
|
||||
Settings.Global.putInt(mContext.getContentResolver(),
|
||||
Settings.Global.DEVELOPMENT_SETTINGS_ENABLED, 1);
|
||||
|
||||
mDashboard.onCheckedChanged(null, false /* isChecked */);
|
||||
mDashboard.onSwitchChanged(null, false /* isChecked */);
|
||||
|
||||
assertThat(ShadowEnableDevelopmentSettingWarningDialog.mShown).isFalse();
|
||||
assertThat(DevelopmentSettingsEnabler.isDevelopmentSettingsEnabled(mContext)).isFalse();
|
||||
@@ -203,7 +203,7 @@ public class DevelopmentSettingsDashboardFragmentTest {
|
||||
Settings.Global.putInt(mContext.getContentResolver(),
|
||||
Settings.Global.DEVELOPMENT_SETTINGS_ENABLED, 1);
|
||||
|
||||
mDashboard.onCheckedChanged(null, false /* isChecked */);
|
||||
mDashboard.onSwitchChanged(null, false /* isChecked */);
|
||||
|
||||
AlertDialog dialog = ShadowAlertDialogCompat.getLatestAlertDialog();
|
||||
assertThat(dialog).isNotNull();
|
||||
|
@@ -24,7 +24,6 @@ import static com.google.common.truth.Truth.assertThat;
|
||||
import static org.mockito.Mockito.when;
|
||||
|
||||
import android.content.Context;
|
||||
import android.widget.CompoundButton.OnCheckedChangeListener;
|
||||
|
||||
import androidx.lifecycle.LifecycleOwner;
|
||||
|
||||
@@ -32,6 +31,7 @@ import com.android.settings.testutils.shadow.ShadowUserManager;
|
||||
import com.android.settings.testutils.shadow.ShadowUtils;
|
||||
import com.android.settings.widget.SettingsMainSwitchBar;
|
||||
import com.android.settingslib.core.lifecycle.Lifecycle;
|
||||
import com.android.settingslib.widget.OnMainSwitchChangeListener;
|
||||
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
@@ -78,7 +78,7 @@ public class DevelopmentSwitchBarControllerTest {
|
||||
ShadowUtils.setIsUserAMonkey(true);
|
||||
new DevelopmentSwitchBarController(mSettings, mSwitchBar,
|
||||
true /* isAvailable */, mLifecycle);
|
||||
final List<OnCheckedChangeListener> listeners =
|
||||
final List<OnMainSwitchChangeListener> listeners =
|
||||
ReflectionHelpers.getField(mSwitchBar, "mSwitchChangeListeners");
|
||||
|
||||
mLifecycle.handleLifecycleEvent(ON_START);
|
||||
@@ -93,7 +93,7 @@ public class DevelopmentSwitchBarControllerTest {
|
||||
ShadowUtils.setIsUserAMonkey(false);
|
||||
new DevelopmentSwitchBarController(mSettings, mSwitchBar,
|
||||
true /* isAvailable */, mLifecycle);
|
||||
final List<OnCheckedChangeListener> listeners =
|
||||
final List<OnMainSwitchChangeListener> listeners =
|
||||
ReflectionHelpers.getField(mSwitchBar, "mSwitchChangeListeners");
|
||||
|
||||
mLifecycle.handleLifecycleEvent(ON_START);
|
||||
@@ -109,7 +109,7 @@ public class DevelopmentSwitchBarControllerTest {
|
||||
ShadowUtils.setIsUserAMonkey(false);
|
||||
new DevelopmentSwitchBarController(mSettings, mSwitchBar,
|
||||
true /* isAvailable */, mLifecycle);
|
||||
final List<OnCheckedChangeListener> listeners =
|
||||
final List<OnMainSwitchChangeListener> listeners =
|
||||
ReflectionHelpers.getField(mSwitchBar, "mSwitchChangeListeners");
|
||||
|
||||
mLifecycle.handleLifecycleEvent(ON_START);
|
||||
|
Reference in New Issue
Block a user