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

Commit 235a20a3 authored by Chet Haase's avatar Chet Haase Committed by Android Git Automerger
Browse files

am 21d405f5: Merge "Fix for display list problem with listview items." into honeycomb

* commit '21d405f5':
  Fix for display list problem with listview items.
parents 2a9deb0d 21d405f5
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3357,7 +3357,9 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
        addInArray(child, index);

        child.mParent = this;
        child.mPrivateFlags = (child.mPrivateFlags & ~DIRTY_MASK & ~DRAWING_CACHE_VALID) | DRAWN;
        child.mPrivateFlags = (child.mPrivateFlags & ~DIRTY_MASK & ~DRAWING_CACHE_VALID) |
                DRAWN | INVALIDATED;
        this.mPrivateFlags |= INVALIDATED;

        if (child.hasFocus()) {
            requestChildFocus(child, child.findFocus());