I have the following simple sub when called, sends and intent and all email options like: Email, Gmail, Facebook, etc. icons to allow you to select an email type. The icons display immediately after this sub is executed on 4 out of 5 Samsung S3 phones. The 4th phone shows a strange screen shown below. Even the screen that displays after this is not of much help:
Has anyone who dealt with Samsung S3 seen something like this?
Thank you
Has anyone who dealt with Samsung S3 seen something like this?
Thank you
B4X:
Sub EmailDailyFileTextFile
Dim MyEmail As Email
MyEmail.To.Add(MyAddress.Text)
MyEmail.Subject="Daily text file."
MyEmail.Body="Emailing you the daily text file for today: "
MyEmail.Attachments.Add(File.Combine(DBFilePath,MyDailyTextFile))
StartActivity(MyEmail.GetIntent)
End Sub