Home | History | Annotate | Download | only in list

Lines Matching defs:checkBox

27 import android.widget.CheckBox;
95 * Toggle the checkbox beside the contact for {@param contactId}.
123 // checkbox for the Me profile entry and other directory contacts except local directory.
128 final CheckBox checkBox = view.getCheckBox();
130 checkBox.setChecked(mSelectedContactIds.contains(contactId));
131 checkBox.setTag(contactId);
132 checkBox.setOnClickListener(mCheckBoxClickListener);
138 final CheckBox checkBox = (CheckBox) v;
139 final Long contactId = (Long) checkBox.getTag();
140 if (checkBox.isChecked()) {