Is it possible to add drawables to the positive, negative and neutral buttons of an AlertDialog? If yes, then how?
This can be done by getting a reference to the button using the getButton() method:
alert.show();
Button email = alert.getButton(AlertDialog.BUTTON_NEUTRAL);
email.setBackgroundResource(R.drawable.email);
Note that you must use the getButton() AFTER calling the show() method, otherwise you'll get a NullPointerException..