Avoid touching all adapter items when building accessibility event.

Only check for enabled items if the list is less than 15 items.
diff --git a/core/java/android/widget/ListView.java b/core/java/android/widget/ListView.java
index 99cf6f8c..a195ac7 100644
--- a/core/java/android/widget/ListView.java
+++ b/core/java/android/widget/ListView.java
@@ -1852,18 +1852,25 @@
     public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
         boolean populated = super.dispatchPopulateAccessibilityEvent(event);
 
+        // If the item count is less than 15 then subtract disabled items from the count and
+        // position. Otherwise ignore disabled items.
         if (!populated) {
             int itemCount = 0;
             int currentItemIndex = getSelectedItemPosition();
 
             ListAdapter adapter = getAdapter();
             if (adapter != null) {
-                for (int i = 0, count = adapter.getCount(); i < count; i++) {
-                    if (adapter.isEnabled(i)) {
-                        itemCount++;
-                    } else if (i <= currentItemIndex) {
-                        currentItemIndex--;
+                final int count = adapter.getCount();
+                if (count < 15) {
+                    for (int i = 0; i < count; i++) {
+                        if (adapter.isEnabled(i)) {
+                            itemCount++;
+                        } else if (i <= currentItemIndex) {
+                            currentItemIndex--;
+                        }
                     }
+                } else {
+                    itemCount = count;
                 }
             }