BannerAd.Initialize2("BannerAd", "ca-app-pub-1458452439035293/**********", BannerAd.SIZE_SMART_BANNER)
Dim height As Int
Log("Approximate Size: "&GetDeviceLayoutValues.ApproximateScreenSize) '<----- approximate screen size of android 8.0 is 5.5xxxxxx
If GetDeviceLayoutValues.ApproximateScreenSize < 6 Then
'phones
If 100%x > 100%y Then
height = 32dip
Else
height = 50dip
btnlogin.Top = 100%y - height - btnlogin.Height - 10dip
End If
Else
'tablets
height = 90dip
End If
Activity.AddView(BannerAd, 0dip, 100%y - height, 100%x, height)
BannerAd.LoadAd