Hello,
I myself my copyright notice in a WebView view, so that I reach a link after my Internetpräzenz. I would like to download the HTML text in my program with the following copy
The HTML is read and shown with either LoardHTML or LoadUrl. What am I doing wrong? Thank you for your help in advance.
I myself my copyright notice in a WebView view, so that I reach a link after my Internetpräzenz. I would like to download the HTML text in my program with the following copy
B4X:
Dim pnlCopyright As Panel
Dim pnlclose As Panel
Dim wvCopyright As WebView
Dim bmpBackground As Bitmap
pnlCopyright.Initialize("")
wvCopyright.Initialize("")
pnlclose.Initialize("")
bmpBackground.Initialize(File.DirAssets, "bgclose.png")
pnlclose.SetBackgroundImage(bmpBackground)
Activity.LoadLayout("copyright")
o.Target = wvCopyright
o.RunMethod2("clearCache", "False", "java.lang.boolean")
wvCopyright.LoadHtml("file:///android_asset/copyright.htm")
The HTML is read and shown with either LoardHTML or LoadUrl. What am I doing wrong? Thank you for your help in advance.