Skip to content

Instantly share code, notes, and snippets.

@webkader
Last active August 29, 2015 14:24
Show Gist options
  • Save webkader/1605bc280a47b6710d8c to your computer and use it in GitHub Desktop.
Save webkader/1605bc280a47b6710d8c to your computer and use it in GitHub Desktop.
Custom alert box in Android
/**
* doAlert() für Warn- und Rückfragedialoge
*
* @param mixed context
* @param mixed title
* @param mixed message
* @param boolean status
*/
@SuppressWarnings("deprecation")
public void doAlert(Context context, String title, String message, Boolean status) {
AlertDialog alertDialog = new AlertDialog.Builder(context).create();
alertDialog.setTitle(title); // Titel
alertDialog.setMessage(message); // Nachricht
if (status != null) {
alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail); // Icon Bild
}
// OK Button
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(final DialogInterface dialog, final int which) {
}
});
alertDialog.show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment