Searched refs:isChecked (Results 26 - 50 of 57) sorted by relevance

123

/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbConfirmActivity.java119 boolean alwaysUse = mAlwaysUse.isChecked();
162 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
165 if(isChecked) {
H A DUsbDebuggingActivity.java123 boolean alwaysAllow = allow && mAlwaysAllow.isChecked();
/frameworks/base/core/java/android/widget/
H A DSwitch.java180 setChecked(isChecked());
511 Layout layout = isChecked() ? mOnLayout : mOffLayout;
637 animateThumbToCheckedState(isChecked());
667 setThumbPosition(isChecked());
675 setThumbPosition(isChecked());
797 if (isChecked()) {
839 CharSequence switchText = isChecked() ? mTextOn : mTextOff;
H A DToggleButton.java79 boolean checked = isChecked();
H A DCheckedTextView.java83 public boolean isChecked() { method in class:CheckedTextView
103 * when {@link #isChecked()} is true.
127 * Set the checkmark to a given Drawable. This will be drawn when {@link #isChecked()} is true.
253 if (isChecked()) {
H A DRadioGroup.java131 if (button.isChecked()) {
345 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java195 public boolean isChecked() { method in class:AccessibilityRecord
202 * @param isChecked True if the view is checked, false otherwise.
206 public void setChecked(boolean isChecked) { argument
208 setBooleanProperty(PROPERTY_CHECKED, isChecked);
H A DAccessibilityEvent.java85 * <li>{@link #isChecked()} - Whether the source is checked.</li>
113 * <li>{@link #isChecked()} - Whether the source is checked.</li>
141 * <li>{@link #isChecked()} - Whether the source is checked.</li>
171 * <li>{@link #isChecked()} - Whether the source is checked.</li>
201 * <li>{@link #isChecked()} - Whether the source is checked.</li>
1112 builder.append("; IsChecked: " + record.isChecked());
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DPresetReverbTest.java140 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
143 mPresetReverb.setEnabled(isChecked);
148 if (isChecked) {
H A DEqualizerTest.java195 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
198 mEqualizer.setEnabled(isChecked);
203 if (isChecked) {
H A DEnvReverbTest.java185 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
188 mReverb.setEnabled(isChecked);
196 if (isChecked) {
216 // if (isChecked) {
225 if (isChecked) {
/frameworks/base/core/java/android/preference/
H A DMultiCheckPreference.java244 public void onClick(DialogInterface dialog, int which, boolean isChecked) {
245 mSetValues[which] = isChecked;
H A DMultiSelectListPreference.java171 public void onClick(DialogInterface dialog, int which, boolean isChecked) {
172 if (isChecked) {
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java104 public static boolean isChecked(Object info) { method in class:AccessibilityNodeInfoCompatIcs
105 return ((AccessibilityNodeInfo) info).isChecked();
/frameworks/base/core/tests/coretests/src/android/accessibilityservice/
H A DInterrogationActivityTest.java129 assertFalse(button.isChecked());
405 assertSame(button.isChecked(), source.isChecked());
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItem.java121 public boolean isChecked() { method in class:ActionMenuItem
H A DListMenuItemView.java149 compoundButton.setChecked(mItemData.isChecked());
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java64 public boolean isChecked(Object info); method in interface:AccessibilityNodeInfoCompat.AccessibilityNodeInfoImpl
199 public boolean isChecked(Object info) { method in class:AccessibilityNodeInfoCompat.AccessibilityNodeInfoStubImpl
491 public boolean isChecked(Object info) { method in class:AccessibilityNodeInfoCompat.AccessibilityNodeInfoIcsImpl
492 return AccessibilityNodeInfoCompatIcs.isChecked(info);
1359 public boolean isChecked() { method in class:AccessibilityNodeInfoCompat
1360 return IMPL.isChecked(mInfo);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DDatePicker.java164 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
165 mHasYear = isChecked;
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiObject.java571 public boolean isChecked() throws UiObjectNotFoundException { method in class:UiObject
577 return node.isChecked();
H A DAccessibilityNodeInfoDumper.java107 serializer.attribute("", "checked", Boolean.toString(node.isChecked()));
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DBaseAdapter.java212 resolvedRef, ViewAttribute.IS_CHECKED, cb.isChecked());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DInputMethodsPanel.java179 final boolean checked = mHardKeyboardSwitch.isChecked();
329 if (mHardKeyboardSwitch.isChecked() != mHardKeyboardEnabled) {
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DProfileActivity.java299 if (mCaptureButton.isChecked()) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java1404 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { argument
1405 Log.d(TAG, "remember this choice: " + isChecked);
1406 mRememberChoice = isChecked;
1407 if (isChecked) {

Completed in 245 milliseconds

123