Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.example.utils;
- import android.app.AlertDialog;
- import android.app.Dialog;
- import android.content.Context;
- import android.content.DialogInterface;
- import android.widget.Toast;
- /**
- *
- * @author Piotr Slesarew
- *
- */
- public class DialogUtils {
- private String title = "...";
- private String positiveButtonText = "Yes";
- private String negativeButtonText = "No";
- private String messageText = "....?";
- private String toastText = "....";
- private Context context;
- private AlertDialog alertDialog;
- Dialog dialog;
- public DialogUtils(Context context, Dialog dialog) {
- super();
- this.context = context;
- this.dialog = dialog;
- }
- /**
- *
- * @param positiveButtonText
- * @param negativeButtonText
- * @param messageText
- * @param toastText
- * @param context
- */
- public DialogUtils(String positiveButtonText, String negativeButtonText,
- String messageText, String toastText, Context context) {
- super();
- this.positiveButtonText = positiveButtonText;
- this.negativeButtonText = negativeButtonText;
- this.messageText = messageText;
- this.toastText = toastText;
- this.context = context;
- }
- public void createDialog(){
- alertDialog = new AlertDialog.Builder(this.context).create();
- alertDialog.setTitle(title);
- alertDialog.setButton(positiveButtonText, new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int which) {
- return;
- }});
- alertDialog.setButton(positiveButtonText, createPositiveOnClickListener());
- alertDialog.setButton2(negativeButtonText, createNegativeOnClickListener());
- alertDialog.setMessage(messageText);
- alertDialog.show();
- }
- private DialogInterface.OnClickListener createPositiveOnClickListener(){
- return new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int which) {
- IziDialogUtils.this.dialog.dismiss();
- Toast.makeText(context, "Porzucono zmiany", Toast.LENGTH_SHORT).show();
- }
- };
- }
- private DialogInterface.OnClickListener createNegativeOnClickListener() {
- return new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int which) {
- alertDialog.dismiss();
- }
- };
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement