How can I add a third button to an Android Alert Dialog?
When you are creating the dialog, add something like this to the builder: builder = new AlertDialog.Builder(context); builder.setTitle(“Test”); builder.setIcon(R.drawable.icon); builder.setMessage(“test”); builder.setPositiveButton(“Call Now”, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { dialog.cancel(); } }); builder.setNeutralButton(“Setup”, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { context.startActivity(new Intent(context, Setup.class)); //dialog.cancel(); } }); builder.setNegativeButton(“Exit”, new DialogInterface.OnClickListener() … Read more