I`m using a standard B4X dialog to display a message to the user, but the message is too long, and being cut off. How do I increase the height of the dialog?
B4X:
Dim dlg As Object = Dialog.Show("Your email address needs to be verified, before it will be included." & CRLF & "Click 'Verify Email' from the menu the send the verification email to this address, once received click the [Enter Pin] button to the left for final verifiation.","OK","","")
Dim Content As B4XView = Dialog.Base.GetView(Dialog.Base.NumberOfViews - 1)
Content.GetView(0).SetTextAlignment("CENTER", "CENTER")
Wait For (dlg) Complete (Result As Int)
If Result = xui.DialogResponse_positive Then
Return' which consumes the event and doesnt exit
End If