Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6a51f06 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android Git Automerger
Browse files

am 9cb3e96a: Merge "CheckedTextView should be reported to accessibility as checkable." into jb-dev

* commit '9cb3e96a':
  CheckedTextView should be reported to accessibility as checkable.
parents 389595bd 9cb3e96a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -230,6 +230,7 @@ public class CheckedTextView extends TextView implements Checkable {
    public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) {
        super.onInitializeAccessibilityNodeInfo(info);
        info.setClassName(CheckedTextView.class.getName());
        info.setCheckable(true);
        info.setChecked(mChecked);
    }
}