Package 

Class UIExtensionsKt

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final static Unit forEachChild(View $self, Function1<View, Unit> callback)
      final static Unit traverseViewHierarchy(View view, Function1<View, Boolean> callback) In-order traverse the view-hierarchy specified by a view, considered to be the hierarchy's root.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • traverseViewHierarchy

         final static Unit traverseViewHierarchy(View view, Function1<View, Boolean> callback)

        In-order traverse the view-hierarchy specified by a view, considered to be the hierarchy's root.

        Parameters:
        view - The hierarchy's root-view.
        callback - A function to call per each view.