diff --git a/library/src/se/emilsjolander/stickylistheaders/WrapperView.java b/library/src/se/emilsjolander/stickylistheaders/WrapperView.java index 6ef8f11f..abff7a3f 100644 --- a/library/src/se/emilsjolander/stickylistheaders/WrapperView.java +++ b/library/src/se/emilsjolander/stickylistheaders/WrapperView.java @@ -65,6 +65,10 @@ void update(View item, View header, Drawable divider, int dividerHeight) { } this.mHeader = header; if (header != null) { + //ADA issue fix + item.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_YES); + setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_NO); + addView(header); } }