Advertisement
minafaw3

AlertDialogManager

Oct 11th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1.  
  2. import android.content.Context;
  3. import android.content.DialogInterface;
  4. import android.support.v7.app.AlertDialog;
  5.  
  6. import com.imaadv.leaynik.Interfaces.DialogCallBack;
  7. import com.imaadv.leaynik.R;
  8.  
  9. /**
  10. * Created by NT on 10/4/15.
  11. */
  12. public class AlertDialogManager {
  13.  
  14. /**
  15. * Function to display simple Alert Dialog
  16. *
  17. * @param context - application context
  18. * @param title - alert dialog title
  19. * @param message - alert message
  20. * @param status - success/failure (used to set icon)
  21. * - pass null if you don't want icon
  22. */
  23.  
  24. public static void showAlertDialog(Context context, String title, String message,
  25. Boolean status, String btn_msg) {
  26.  
  27. AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
  28.  
  29. // Setting Dialog Title
  30. alertDialog.setTitle(title);
  31.  
  32. // Setting Dialog Message
  33. alertDialog.setMessage(message);
  34.  
  35. if (status != null)
  36. // Setting alert dialog icon
  37. alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail);
  38.  
  39. // Setting OK Button
  40. alertDialog.setPositiveButton(btn_msg, new DialogInterface.OnClickListener() {
  41. public void onClick(DialogInterface dialog, int which) {
  42. dialog.cancel();
  43. }
  44. });
  45.  
  46. AlertDialog dialog = alertDialog.create();
  47. // Showing Alert Message
  48. alertDialog.show();
  49. }
  50.  
  51.  
  52.  
  53. public static void showAlertDialog_With_Ok_Cancel(Context context, String title, String message,
  54. Boolean status, String pos_btn_msg ,String neg_btn_msg , final DialogCallBack callBack) {
  55.  
  56. AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
  57.  
  58. // Setting Dialog Title
  59. alertDialog.setTitle(title);
  60.  
  61. // Setting Dialog Message
  62. alertDialog.setMessage(message);
  63.  
  64. if (status != null)
  65. // Setting alert dialog icon
  66. alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail);
  67.  
  68. // Setting OK Button
  69. alertDialog.setPositiveButton(pos_btn_msg, new DialogInterface.OnClickListener() {
  70. public void onClick(DialogInterface dialog, int which) {
  71. callBack.onPostiveButtonClick();
  72.  
  73. }
  74. });
  75.  
  76. alertDialog.setNegativeButton(neg_btn_msg, new DialogInterface.OnClickListener() {
  77. @Override
  78. public void onClick(DialogInterface dialog, int which) {
  79. dialog.cancel();
  80. }
  81. });
  82.  
  83. AlertDialog dialog = alertDialog.create();
  84. // Showing Alert Message
  85. alertDialog.show();
  86. }
  87.  
  88.  
  89.  
  90.  
  91.  
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement