我想在代码中打开或关闭switchcompat小部件。我的意思是当用户改变开关从开到关或其他兼容。我想用代码做这个。我该怎么做?
SwitchCompat switchCompat = (SwitchCompat) findViewById(R.id.switch_compat);

最佳答案

与任何CompoundButton一样,您可以通过编程方式更改SwitchCompat的选中状态。

10-07 15:30