I have a Java Class function as below
public void setPositiveButton(int resId, DialogInterface.OnClickListener listener)
I also have the s
Extending @humazed answer as compiler complains that
lambda argument should be moved out of parenthesis
setPositiveButton("ok"){_,_ -> doSomething()}