Advertisement
minafaw3

dialogutils

Nov 7th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. package com.example.utils;
  2.  
  3. import android.app.AlertDialog;
  4. import android.app.Dialog;
  5. import android.content.Context;
  6. import android.content.DialogInterface;
  7. import android.widget.Toast;
  8.  
  9. /**
  10. *
  11. * @author Piotr Slesarew
  12. *
  13. */
  14. public class DialogUtils {
  15.  
  16. private String title = "...";
  17. private String positiveButtonText = "Yes";
  18. private String negativeButtonText = "No";
  19. private String messageText = "....?";
  20. private String toastText = "....";
  21. private Context context;
  22. private AlertDialog alertDialog;
  23. Dialog dialog;
  24.  
  25. public DialogUtils(Context context, Dialog dialog) {
  26. super();
  27. this.context = context;
  28. this.dialog = dialog;
  29. }
  30.  
  31. /**
  32. *
  33. * @param positiveButtonText
  34. * @param negativeButtonText
  35. * @param messageText
  36. * @param toastText
  37. * @param context
  38. */
  39. public DialogUtils(String positiveButtonText, String negativeButtonText,
  40. String messageText, String toastText, Context context) {
  41. super();
  42. this.positiveButtonText = positiveButtonText;
  43. this.negativeButtonText = negativeButtonText;
  44. this.messageText = messageText;
  45. this.toastText = toastText;
  46. this.context = context;
  47. }
  48.  
  49. public void createDialog(){
  50. alertDialog = new AlertDialog.Builder(this.context).create();
  51. alertDialog.setTitle(title);
  52. alertDialog.setButton(positiveButtonText, new DialogInterface.OnClickListener() {
  53. public void onClick(DialogInterface dialog, int which) {
  54. return;
  55. }});
  56. alertDialog.setButton(positiveButtonText, createPositiveOnClickListener());
  57. alertDialog.setButton2(negativeButtonText, createNegativeOnClickListener());
  58. alertDialog.setMessage(messageText);
  59. alertDialog.show();
  60. }
  61.  
  62. private DialogInterface.OnClickListener createPositiveOnClickListener(){
  63.  
  64. return new DialogInterface.OnClickListener() {
  65. public void onClick(DialogInterface dialog, int which) {
  66. IziDialogUtils.this.dialog.dismiss();
  67. Toast.makeText(context, "Porzucono zmiany", Toast.LENGTH_SHORT).show();
  68. }
  69. };
  70. }
  71.  
  72. private DialogInterface.OnClickListener createNegativeOnClickListener() {
  73.  
  74. return new DialogInterface.OnClickListener() {
  75. public void onClick(DialogInterface dialog, int which) {
  76. alertDialog.dismiss();
  77. }
  78. };
  79. }
  80.  
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement