Package 

Interface InjectedViewAdapterConfigurator

    • Method Summary

      Modifier and Type Method Description
      abstract Unit onConfigure(T injectedViewAdapter) Called every time after the InjectedViewAdapter.onCreateView has been called.
      • Methods inherited from class java.lang.Object

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

      • onConfigure

         abstract Unit onConfigure(T injectedViewAdapter)

        Called every time after the InjectedViewAdapter.onCreateView has been called.

        This method is called in onStart of the InjectedViewContainer's lifecycle observer.

        IMPORTANT: When this is called the view adapter has lost its previous state and must be completely reconfigured to be in the required state. For example if a button has been disabled and this method was called afterwards then you have to disabled the button again.