Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim wv As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
wv.Initialize("wv")
Activity.AddView(wv,0,0,100%x,50%y)
Dim t As String = "ê ö ä ë"
File.WriteString(File.DirInternal,"tmp.txt",t)
t = File.ReadString(File.DirInternal,"tmp.txt")
wv.LoadHtml(t)
End Sub