HomeSort by relevance Sort by last modified time
    Searched refs:compoundButton (Results 1 - 2 of 2) sorted by null

  /cts/tests/tests/widget/src/android/widget/cts/
CompoundButtonTest.java 37 import android.widget.CompoundButton;
38 import android.widget.CompoundButton.OnCheckedChangeListener;
41 * Test {@link CompoundButton}.
83 CompoundButton compoundButton = new MockCompoundButton(mContext);
85 compoundButton.setOnCheckedChangeListener(listener);
86 assertFalse(compoundButton.isChecked());
89 compoundButton.setChecked(true);
90 assertTrue(compoundButton.isChecked());
92 assertSame(compoundButton, listener.getInputCompoundButton())
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
ListMenuItemView.java 27 import android.widget.CompoundButton;
131 final CompoundButton compoundButton;
132 final CompoundButton otherCompoundButton;
138 compoundButton = mRadioButton;
144 compoundButton = mCheckBox;
149 compoundButton.setChecked(mItemData.isChecked());
152 if (compoundButton.getVisibility() != newVisibility) {
153 compoundButton.setVisibility(newVisibility);
167 CompoundButton compoundButton
    [all...]

Completed in 2720 milliseconds