All Projects → MagicDog707 → Iosdialog

MagicDog707 / Iosdialog

Licence: mit
iOS UIAlertView on Android.

Programming Languages

java
68154 projects - #9 most used programming language

iOSDialog - iOS UIAlertView on Android

With this library you can use iOS UIAlertView on Android.


Two Buttons

One Button

To install the library just add this line to your gradle:
implementation 'com.gdacciaro:iosdialog:1.0.3'

And add this where you want:

  new iOSDialogBuilder(MainActivity.this)
	.setTitle(getString(R.string.example_title))
	.setSubtitle(getString(R.string.example_subtitle))
	.setBoldPositiveLabel(true)
	.setCancelable(false)
	.setPositiveListener(getString(R.string.ok),new iOSDialogClickListener() {
	    @Override
	    public void onClick(iOSDialog dialog) {
		Toast.makeText(MainActivity.this,"Clicked!",Toast.LENGTH_LONG).show();
		dialog.dismiss();

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

If you liked this library, add a star to this project and feel free to make a fork!



A special thanks to Rofiq Setiawan who made a porting of iOSDialog for Xamarin. Check it out here: https://github.com/rofiqsetiawan/iOSDialog
Another special thanks to Francesco Borrelli who helped me with the implementation of the iOSDialogClickListener Here is his Linkedin profile https://www.linkedin.com/in/francesco-borrelli1/
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].