Hi!
I have a MsgBox on my application and i have realised that the text isn't showing on Android 6.0 devices, but on other android versions it is.
My SdkVersion is set to 23, and this is the code of the dialog
The MsgBox always appears, but on android 6.0 shows an empty MsgBox with the buttons YES and NO.
Why is that?
Thank you,
Gerard
I have a MsgBox on my application and i have realised that the text isn't showing on Android 6.0 devices, but on other android versions it is.
My SdkVersion is set to 23, and this is the code of the dialog
B4X:
If gpsClient.GPSEnabled=False Then
ret = Msgbox2("GPS Disabled. Enable?", "GPS Disabled", "YES", "", "NO", Null)
Select ret
Case DialogResponse.POSITIVE
StartActivity(gpsClient.LocationSettingsIntent)
End Select
End If
The MsgBox always appears, but on android 6.0 shows an empty MsgBox with the buttons YES and NO.
Why is that?
Thank you,
Gerard