iOSDialog icon indicating copy to clipboard operation
iOSDialog copied to clipboard

support included for context string

Open ramseth001 opened this issue 4 years ago • 1 comments

Can define string values for title, subtitle and button texts without using getString method.

ramseth001 avatar Sep 25 '19 05:09 ramseth001

@MagicDog707 The above commit enables the user to create null negative listener.

So, instead of defining like this

.setNegativeListener(getString(R.string.dismiss), new iOSDialogClickListener() {
	    @Override
	    public void onClick(iOSDialog dialog) {
		dialog.dismiss();
	    }
	})

we can define like this .setNegativeListener(getString(R.string.dismiss), null)

ramseth001 avatar Sep 27 '19 10:09 ramseth001