Example usage for Java android.widget RadioButton fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | isChecked() |
boolean | performClick() |
void | setButtonDrawable(@DrawableRes int resId) Sets a drawable as the compound button image given its resource identifier. |
void | setButtonTintList(@Nullable ColorStateList tint) Applies a tint to the button drawable. |
void | setChecked(boolean checked) Changes the checked state of this button. |
void | setOnCheckedChangeListener(@Nullable OnCheckedChangeListener listener) Register a callback to be invoked when the checked state of this button changes. |
void | toggle() If the radio button is already checked, this method will not toggle the radio button. |