By the way, how is possible to change further characteristic of webview?, the image is not in the centre of the rectangule, and the background is white and I need to have it transparent..
By the way, how is possible to change further characteristic of webview?, the image is not in the centre of the rectangule, and the background is white and I need to have it transparent..
However there is another problem, now the ad image is showed perfectly with the Erel's recommendation, but if you press on the ad, a message appears: "webpage not available", so I suppose it is not right yet. Would you know the root case? and how to solve it?
Sub WebView1_OverrideUrl (Url As String) As Boolean
If Url.EqualsIgnoreCase($"<script type="text/javascript" src="http://ad.leadboltads.net/show_app_ad.js?section_id=xxxxxxxxx"></script>"$) Then
Return False
Else
Dim i As Intent
i.Initialize(i.ACTION_VIEW, Url)
StartActivity(i)
Return True
End If
End Sub
With this the ad works perfectly.
However the ad shows not in the centre of the webview, and I dont know how to do transparent the background of the webview. Please.. anybody knows how to do it??