I build an AlertBox
with 3 buttons (positiv, neutral & negativ):
myDialogBox = AlertDialog.Builder(context, R.style.MyAlertDialogTheme);
Then I set the buttons like so:
myDialogBox.setPositiveButton(sBuyAtlas, new alogInterface.OnClickListener()
myDialogBox.setNeutralButton(sBuyAtlas, new alogInterface.OnClickListener()
myDialogBox.setNegativeButton(sBuyAtlas, new alogInterface.OnClickListener()
At runtime the order is positiv - negativ - neutral
How can I achieve the cancel to be right. It is common, that "cancel" is on the rigth side of an dialog. How can I do that, without missusing the neutral as cancel ?