The following code opens the gMail app and sends a message as expected. When I hit send the soft keyboard (that was loaded by the Gmail app) remains open and covers half my app until I manually close it. How do I force the keyboard to go away along with the dismissed mail app?
Public Sub contactUs(mapData As Map)
Private Message As Email
Public p As Phone
Message.Body = mapData.Get("body")
Message.To.Add("Someone@gmail.com")
Message.Subject = "Message from My App"
StartActivity(Message.GetIntent)
End SubPublic p As Phone
Message.Body = mapData.Get("body")
Message.To.Add("Someone@gmail.com")
Message.Subject = "Message from My App"
StartActivity(Message.GetIntent)
Last edited: