Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import android.content.Context;
- import android.content.DialogInterface;
- import android.support.v7.app.AlertDialog;
- import com.imaadv.leaynik.Interfaces.DialogCallBack;
- import com.imaadv.leaynik.R;
- /**
- * Created by NT on 10/4/15.
- */
- public class AlertDialogManager {
- /**
- * Function to display simple Alert Dialog
- *
- * @param context - application context
- * @param title - alert dialog title
- * @param message - alert message
- * @param status - success/failure (used to set icon)
- * - pass null if you don't want icon
- */
- public static void showAlertDialog(Context context, String title, String message,
- Boolean status, String btn_msg) {
- AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
- // Setting Dialog Title
- alertDialog.setTitle(title);
- // Setting Dialog Message
- alertDialog.setMessage(message);
- if (status != null)
- // Setting alert dialog icon
- alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail);
- // Setting OK Button
- alertDialog.setPositiveButton(btn_msg, new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int which) {
- dialog.cancel();
- }
- });
- AlertDialog dialog = alertDialog.create();
- // Showing Alert Message
- alertDialog.show();
- }
- public static void showAlertDialog_With_Ok_Cancel(Context context, String title, String message,
- Boolean status, String pos_btn_msg ,String neg_btn_msg , final DialogCallBack callBack) {
- AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
- // Setting Dialog Title
- alertDialog.setTitle(title);
- // Setting Dialog Message
- alertDialog.setMessage(message);
- if (status != null)
- // Setting alert dialog icon
- alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail);
- // Setting OK Button
- alertDialog.setPositiveButton(pos_btn_msg, new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int which) {
- callBack.onPostiveButtonClick();
- }
- });
- alertDialog.setNegativeButton(neg_btn_msg, new DialogInterface.OnClickListener() {
- @Override
- public void onClick(DialogInterface dialog, int which) {
- dialog.cancel();
- }
- });
- AlertDialog dialog = alertDialog.create();
- // Showing Alert Message
- alertDialog.show();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement