Camera2Basic.ConfirmationDialog.NegativeListener.OnClick C# (CSharp) Method

OnClick() public method

public OnClick ( IDialogInterface dialog, int which ) : void
dialog IDialogInterface
which int
return void
            public void OnClick(IDialogInterface dialog, int which)
            {
                Activity activity = mParent.Activity;
                if (activity != null)
                {
                    activity.Finish();
                }
            }
        }
ConfirmationDialog.NegativeListener