Home
last modified time | relevance | path

Searched refs:mCheckBox (Results 1 – 4 of 4) sorted by relevance

/development/samples/Support7Demos/src/com/example/android/supportv7/widget/util/
DConfigViewHolder.java27 private CheckBox mCheckBox; field in ConfigViewHolder
33 mCheckBox = (CheckBox) itemView; in ConfigViewHolder()
34 mCheckBox.setOnCheckedChangeListener(this); in ConfigViewHolder()
39 mCheckBox.setText(toggle.getText()); in bind()
40 mCheckBox.setChecked(toggle.isChecked()); in bind()
/development/samples/Support7Demos/src/com/example/android/supportv7/util/
DSortedListActivity.java144 final CheckBox mCheckBox;
148 mCheckBox = (CheckBox) itemView;
149 mCheckBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
161 mCheckBox.setText(item.mText);
162 mCheckBox.setChecked(item.mIsDone);
/development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
DViewAnimations.java42 CheckBox mCheckBox; field in ViewAnimations
49 mCheckBox = (CheckBox) findViewById(R.id.checkbox); in onCreate()
98 v.startAnimation(mCheckBox.isChecked() ? in setupAnimation()
/development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
DPropertyAnimations.java41 CheckBox mCheckBox; field in PropertyAnimations
48 mCheckBox = (CheckBox) findViewById(R.id.checkbox); in onCreate()
101 if (mCheckBox.isChecked()) { in setupAnimation()