Last active
August 29, 2015 14:24
-
-
Save webkader/1605bc280a47b6710d8c to your computer and use it in GitHub Desktop.
Custom alert box in Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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