HomeSort by relevance Sort by last modified time
    Searched defs:mCheckBox (Results 1 - 11 of 11) sorted by null

  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/util/
ConfigViewHolder.java 27 private CheckBox mCheckBox;
33 mCheckBox = (CheckBox) itemView;
34 mCheckBox.setOnCheckedChangeListener(this);
39 mCheckBox.setText(toggle.getText());
40 mCheckBox.setChecked(toggle.isChecked());
  /packages/apps/Camera/src/com/android/camera/ui/
InLineSettingCheckBox.java 32 private CheckBox mCheckBox;
48 mCheckBox = (CheckBox) findViewById(R.id.setting_check_box);
49 mCheckBox.setOnCheckedChangeListener(mCheckedChangeListener);
56 mCheckBox.setContentDescription(getContext().getResources().getString(
62 mCheckBox.setOnCheckedChangeListener(null);
64 mCheckBox.setChecked(mIndex == 1);
67 mCheckBox.setChecked(index == 1);
69 mCheckBox.setOnCheckedChangeListener(mCheckedChangeListener);
81 if (mCheckBox != null) mCheckBox.setEnabled(enable)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
LocationDialogLayout.java 39 private CheckBox mCheckBox;
78 mCheckBox = (CheckBox) findViewById(R.id.check_box);
79 mCheckBox.setChecked(mLocationRecordingEnabled);
80 mCheckBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
  /packages/apps/Messaging/src/com/android/messaging/ui/attachmentchooser/
AttachmentGridItemView.java 46 private CheckBox mCheckBox;
57 mCheckBox = (CheckBox) findViewById(R.id.checkbox);
58 mCheckBox.setOnClickListener(new OnClickListener() {
78 mCheckBox.getHitRect(region);
80 setTouchDelegate(new TouchDelegate(region, mCheckBox));
108 mCheckBox.setChecked(mHostInterface.isItemSelected(mAttachmentData));
  /development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
ViewAnimations.java 42 CheckBox mCheckBox;
49 mCheckBox = (CheckBox) findViewById(R.id.checkbox);
98 v.startAnimation(mCheckBox.isChecked() ?
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 41 CheckBox mCheckBox;
48 mCheckBox = (CheckBox) findViewById(R.id.checkbox);
101 if (mCheckBox.isChecked()) {
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
GalleryGridItemView.java 55 private CheckBox mCheckBox;
73 mCheckBox = (CheckBox) findViewById(R.id.checkbox);
74 mCheckBox.setOnClickListener(mOnClickListener);
84 mCheckBox.setOnLongClickListener(longClickListener);
91 setTouchDelegate(new TouchDelegate(region, mCheckBox) {
128 mCheckBox.setVisibility(VISIBLE);
129 mCheckBox.setClickable(true);
130 mCheckBox.setChecked(mHostInterface.isItemSelected(mData));
132 mCheckBox.setVisibility(GONE);
133 mCheckBox.setClickable(false)
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ListMenuItemView.java 44 private CheckBox mCheckBox;
130 if (!checkable && mRadioButton == null && mCheckBox == null) {
144 otherCompoundButton = mCheckBox;
146 if (mCheckBox == null) {
149 compoundButton = mCheckBox;
166 if (mCheckBox != null) mCheckBox.setVisibility(GONE);
180 if (mCheckBox == null) {
183 compoundButton = mCheckBox;
257 mCheckBox
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ListMenuItemView.java 47 private CheckBox mCheckBox;
130 if (!checkable && mRadioButton == null && mCheckBox == null) {
144 otherCompoundButton = mCheckBox;
146 if (mCheckBox == null) {
149 compoundButton = mCheckBox;
166 if (mCheckBox != null) {
167 mCheckBox.setVisibility(GONE);
184 if (mCheckBox == null) {
187 compoundButton = mCheckBox;
261 mCheckBox
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListItemView.java 165 private CheckBox mCheckBox;
352 if (isVisible(mCheckBox)) {
353 mCheckBox.measure(
356 mCheckBoxWidth = mCheckBox.getMeasuredWidth();
357 mCheckBoxHeight = mCheckBox.getMeasuredHeight();
519 if (isVisible(mCheckBox)) {
522 mCheckBox.layout(rightBound - mCheckBoxWidth,
527 mCheckBox.layout(leftBound,
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 249 milliseconds