Hi,
Is it possible to programmatically generate HTML via AI2 and feed it directly to the Webview for presentation via it ?
I cobbled together what should be a valid HTML by concatenating various string parts, and then passed it to WebViewer.WebViewString, hoping that it'd display.
The string is something like this:
<html><body><p><b>Topic1</b>Description1</p><p><b>Topic2</b>Description2</p></body></html>
which should display like:
Topic1 Description1
Topic2 Description2
But, what I actually get in the WebView is a white canvas, nothing else. Snippet follows...
Wondering if, instead of 'downloading' the above files could be 'bundled' as 'assets', since I want my app to be usable by people using phones in 'offline/internet-disconnected' mode as well ? Would that work ?