Showing posts with label Change color of alertdialog button. Show all posts
Showing posts with label Change color of alertdialog button. Show all posts

Saturday, January 26, 2013

Change color of alertdialog button


 Button b = dialogf.getButton(DialogInterface.BUTTON_NEGATIVE);
if(b != null){
   b.setBackgroundDrawable(getResources().getDrawable(R.drawable.loginbutton));
  b.setTextColor(getResources().getColor(android.R.color.white));
 }