diff options
| author | Kenny Root <kroot@google.com> | 2013-09-12 21:49:35 -0700 |
|---|---|---|
| committer | Kenny Root <kroot@google.com> | 2013-09-12 21:49:35 -0700 |
| commit | bd51158d61ef10cea65a31d5795887444d2d9cbf (patch) | |
| tree | 353b8e0a3f554938b8ac69c364d734a8f515bebc /core/java/android/widget/CompoundButton.java | |
| parent | 90ce2f3f52722e24cd5b055d0282b1bc9c3639b9 (diff) | |
| parent | aca95ca0e3e24a896579c3d9ea4128fe9cba5d5f (diff) | |
resolved conflicts for merge of aca95ca0 to master
Change-Id: I91adf923288ca724a8040ecf887e28e42ad7e259
Diffstat (limited to 'core/java/android/widget/CompoundButton.java')
| -rw-r--r-- | core/java/android/widget/CompoundButton.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/widget/CompoundButton.java b/core/java/android/widget/CompoundButton.java index da94082afa3f..bdb50466fb14 100644 --- a/core/java/android/widget/CompoundButton.java +++ b/core/java/android/widget/CompoundButton.java @@ -117,7 +117,8 @@ public abstract class CompoundButton extends Button implements Checkable { if (mChecked != checked) { mChecked = checked; refreshDrawableState(); - notifyViewAccessibilityStateChangedIfNeeded(); + notifyViewAccessibilityStateChangedIfNeeded( + AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED); // Avoid infinite recursions if setChecked() is called from a listener if (mBroadcasting) { |
