Created
March 28, 2019 21:25
-
-
Save Dimezis/1c02c1c58681b03e8b7a97e06a0b4cb8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
public void onDescendantInvalidated(@NonNull View child, @NonNull View target) { | |
// ... Some flags trickery here | |
if (mParent != null) { | |
mParent.onDescendantInvalidated(this, target); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment