Home | History | Annotate | Download | only in widget

Lines Matching defs:CheckBox

24  * A checkbox is a specific type of two-states button that can be either
25 * checked or unchecked. A example usage of a checkbox inside your activity
36 * final CheckBox checkBox = (CheckBox) findViewById(R.id.checkbox_id);
37 * if (checkBox.isChecked()) {
38 * checkBox.setChecked(false);
44 * <p>See the <a href="{@docRoot}guide/topics/ui/controls/checkbox.html">Checkboxes</a>
55 public class CheckBox extends CompoundButton {
56 public CheckBox(Context context) {
60 public CheckBox(Context context, AttributeSet attrs) {
64 public CheckBox(Context context, AttributeSet attrs, int defStyleAttr) {
68 public CheckBox(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
74 return CheckBox.class.getName();