HomeSort by relevance Sort by last modified time
    Searched defs:compoundButton (Results 1 - 3 of 3) 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 28 import android.widget.CompoundButton;
132 final CompoundButton compoundButton;
133 final CompoundButton otherCompoundButton;
139 compoundButton = mRadioButton;
145 compoundButton = mCheckBox;
150 compoundButton.setChecked(mItemData.isChecked());
153 if (compoundButton.getVisibility() != newVisibility) {
154 compoundButton.setVisibility(newVisibility);
168 CompoundButton compoundButton
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ListMenuItemView.java 28 import android.widget.CompoundButton;
141 final CompoundButton compoundButton;
142 final CompoundButton otherCompoundButton;
148 compoundButton = mRadioButton;
154 compoundButton = mCheckBox;
159 compoundButton.setChecked(mItemData.isChecked());
162 if (compoundButton.getVisibility() != newVisibility) {
163 compoundButton.setVisibility(newVisibility);
181 CompoundButton compoundButton
    [all...]

Completed in 1298 milliseconds