Back to project page ITM_Android_App.
The source code is released under:
GNU General Public License
If you think the Android project ITM_Android_App listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Function to display simple Alert Dialog * @param context - application context * @param title - alert dialog title/*from ww w .j a v a2 s .com*/ * @param message - alert message * @param status - success/failure (used to set icon) * - pass null if you don't want icon * */ package com.wbs.itm; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; public class AlertDialogManager { @SuppressWarnings("deprecation") public void showAlertDialog(Context context, String title, String message, Boolean status) { AlertDialog alertDialog = new AlertDialog.Builder(context).create(); // 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.setButton("OK", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { } }); // Showing Alert Message alertDialog.show(); } }