Added in API level 1
  
  
  
  
CompoundButton.OnCheckedChangeListener
  public
  static
  
  
  interface
  CompoundButton.OnCheckedChangeListener
  
  
  
| android.widget.CompoundButton.OnCheckedChangeListener | 
Interface definition for a callback to be invoked when the checked state of a compound button changed.
Summary
| Public methods | |
|---|---|
| 
        abstract
        
        
        
        
        void | 
      onCheckedChanged(CompoundButton buttonView, boolean isChecked)
      Called when the checked state of a compound button has changed. | 
Public methods
onCheckedChanged
    Added in API level 1
  
      
  
    public abstract void onCheckedChanged (CompoundButton buttonView, boolean isChecked)
Called when the checked state of a compound button has changed.
| Parameters | |
|---|---|
| buttonView | CompoundButton: The compound button view whose state has changed.
 This value cannot benull. | 
| isChecked | boolean: The new checked state of buttonView. | 
