In the new Basic4Android 3.50 version, I realised that images loaded in webviews are not displayed in mode “debug (rapid)”. In other modes, as “debug (legacy)” and “release” are shown normally.
There is a simple example to check this:
regards
There is a simple example to check this:
B4X:
Sub Globals
Dim WebV As WebView
End Sub
Sub Activity_Create(FirstTime AsBoolean)
Activity.LoadLayout("Layout1")
WebV.Initialize("WebV")
Activity.AddView(WebV, 0dip, 0dip, 100%x, 100%y)
WebV.LoadHtml("<html><body background='file:///android_asset/image.jpg'></body></html>")
End Sub
regards