Skip to content

Instantly share code, notes, and snippets.

@ryanlecompte
Created May 22, 2013 19:22
Show Gist options
  • Save ryanlecompte/5630168 to your computer and use it in GitHub Desktop.
Save ryanlecompte/5630168 to your computer and use it in GitHub Desktop.
interop with java
@tailrec
def findClickableParent(nodeInfo: AccessibilityNodeInfo): AccessibilityNodeInfo = {
nodeInfo match {
case null => null
case n if n.isClickable => n
case n => findClickableParent(n.getParent)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment