Sweet Alert Dialog


Source link: https://github.com/pedant/sweet-alert-dialog

Sweet Alert Dialog

SweetAlert for Android, a beautiful and clever alert dialog

???

Inspired by JavaScript SweetAlert

Demo Download

ScreenShot

Setup

The simplest way to use SweetAlertDialog is to add the library as aar dependency to your build.

Maven

<dependency>
<groupId>cn.pedant.sweetalert</groupId>
<artifactId>library</artifactId>
<version>1.3</version>
<type>aar</type> </dependency> 

Gradle

repositories {

  mavenCentral() 
}
  dependencies {

  compile 'cn.pedant.sweetalert:library:1.3' 
}
 

Usage

show material progress

SweetAlertDialog pDialog = new SweetAlertDialog(this, SweetAlertDialog.PROGRESS_TYPE);
 pDialog.getProgressHelper().setBarColor(Color.parseColor("#A5DC86"));
 pDialog.setTitleText("Loading");
 pDialog.setCancelable(false);
 pDialog.show();
 

You can customize progress bar dynamically with materialish-progress methods via SweetAlertDialog.getProgressHelper():

  • resetCount()
  • isSpinning()
  • spin()
  • stopSpinning()
  • getProgress()
  • setProgress(float progress)
  • setInstantProgress(float progress)
  • getCircleRadius()
  • setCircleRadius(int circleRadius)
  • getBarWidth()
  • setBarWidth(int barWidth)
  • getBarColor()
  • setBarColor(int barColor)
  • getRimWidth()
  • setRimWidth(int rimWidth)
  • getRimColor()
  • setRimColor(int rimColor)
  • getSpinSpeed()
  • setSpinSpeed(float spinSpeed)

thanks to the project materialish-progress and @croccio participation.

more usages about progress, please see the sample.

A basic message?

new SweetAlertDialog(this)
  .setTitleText("Here's a message!")
  .show();
 

A title with a text under?

new SweetAlertDialog(this)
  .setTitleText("Here's a message!")
  .setContentText("It's pretty, isn't it?")
  .show();
 

A error message?

new SweetAlertDialog(this, SweetAlertDialog.ERROR_TYPE)
  .setTitleText("Oops...")
  .setContentText("Something went wrong!")
  .show();
 

A warning message?

new SweetAlertDialog(this, SweetAlertDialog.WARNING_TYPE)
  .setTitleText("Are you sure?")
  .setContentText("Won't be able to recover this file!")
  .setConfirmText("Yes,delete it!")
  .show();
 

A success message?

new SweetAlertDialog(this, SweetAlertDialog.SUCCESS_TYPE)
  .setTitleText("Good job!")
  .setContentText("You clicked the button!")
  .show();
 

A message with a custom icon?

new SweetAlertDialog(this, SweetAlertDialog.CUSTOM_IMAGE_TYPE)
  .setTitleText("Sweet!")
  .setContentText("Here's a custom image.")
  .setCustomImage(R.drawable.custom_img)
  .show();
 

Bind the listener to confirm button?

new SweetAlertDialog(this, SweetAlertDialog.WARNING_TYPE)
  .setTitleText("Are you sure?")
  .setContentText("Won't be able to recover this file!")
  .setConfirmText("Yes,delete it!")
  .setConfirmClickListener(new SweetAlertDialog.OnSweetClickListener() {

@Override

public void onClick(SweetAlertDialog sDialog) {

 sDialog.dismissWithAnimation();

}

  
}
)
  .show();
 

Show the cancel button and bind listener to it?

new SweetAlertDialog(this, SweetAlertDialog.WARNING_TYPE)
  .setTitleText("Are you sure?")
  .setContentText("Won't be able to recover this file!")
  .setCancelText("No,cancel plx!")
  .setConfirmText("Yes,delete it!")
  .showCancelButton(true)
  .setCancelClickListener(new SweetAlertDialog.OnSweetClickListener() {

@Override

public void onClick(SweetAlertDialog sDialog) {

 sDialog.cancel();

}

  
}
)
  .show();
 

Change the dialog style upon confirming?

new SweetAlertDialog(this, SweetAlertDialog.WARNING_TYPE)
  .setTitleText("Are you sure?")
  .setContentText("Won't be able to recover this file!")
  .setConfirmText("Yes,delete it!")
  .setConfirmClickListener(new SweetAlertDialog.OnSweetClickListener() {

@Override

public void onClick(SweetAlertDialog sDialog) {

 sDialog

  .setTitleText("Deleted!")

  .setContentText("Your imaginary file has been deleted!")

  .setConfirmText("OK")

  .setConfirmClickListener(null)

  .changeAlertType(SweetAlertDialog.SUCCESS_TYPE);

}

  
}
)
  .show();
 

more android tech shares: pedant.cn

License

The MIT License (MIT)  Copyright (c) 2014 Pedant(http://pedant.cn)  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 

Resources

Create square float action button using this example!

In this example we are creating an square floating action button which will be different from float action button, but will work the same

Are you creating a music app? Or maybe you want to add some creative detail to an existing one? Then you’ve come to the right place! Play Widget for Android created by Cleveroad can be easily integrated with your music app to spruce the user experience up. Break the monotony and make your music player unique!

New distinct things encourage users to launch your app again. Add the Play Widget component to your app and enjoy the benefits — it’s easy as one-two-three.

Android 3rd party library to make implementing galleries more easier.

RealmRepository generates classes with access to Realm database. Library uses repository pattern, each generated class supports database operations on certain type. Project was inspired by Spring Data JPA.

Get Appodeal SDK adding just a Gradle dependency line.

Urdu keyboard for android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes