KBaseView

public KBaseView<T> KBaseView(Function1<ViewBuilder, Unit> function)

Constructs view class with view interaction from given ViewBuilder

Parameters

function

ViewBuilder which will result in view's interaction

See also


public KBaseView<T> KBaseView(Matcher<View> parent, Function1<ViewBuilder, Unit> function)

Constructs view class with parent and view interaction from given ViewBuilder

Parameters

parent

Matcher that will be used as parent in isDescendantOfA() matcher

function

ViewBuilder which will result in view's interaction

See also


public KBaseView<T> KBaseView(DataInteraction parent, Function1<ViewBuilder, Unit> function)

Constructs view class with parent and view interaction from given ViewBuilder

Parameters

parent

DataInteraction that will be used as parent to ViewBuilder

function

ViewBuilder which will result in view's interaction

See also