Android Question Order of the buttons on msgbox2

Eme Fibonacci

Well-Known Member
Licensed User
Longtime User
The order of input values in msgbox2 are "positive", "cancel", "negative".

But the view depends on the version of the android platform?

What is the design standard for android? (Yes / Cancel / no) or (No, cancel, Yes)?

I need something like (No, Details, Yes)

I thank for ideas.

Thank you.
 

DonManfred

Expert
Licensed User
Longtime User
I need something like (No, Details, Yes)
then use them. But note that you consider positive answer as No then...

B4X:
result = Msgbox2 ("message", "Title", "No",  "Details",  "Yes", Icon As android.graphics.Bitmap)
If result = DialogResponse.Positive Then
  ' This is your NO

'DialogResponse.CANCEL is details
'DialogResponse.NEGATIVE is YES
 
Last edited:
Upvote 0
Top