Sub Globals
Dim scvAbout As ScrollView
Dim pnlAbout As Panel
Dim WebView6 As WebView
Dim Label1 As Label
Dim btnAboutOK As Button
End Sub
Sub Activity_Create(FirstTime As Boolean)
If FirstTime Then
End If
Activity.LoadLayout("AboutScrollView.bal")
scvAbout.Panel.LoadLayout("About")
scvAbout.Panel.Height = pnlAbout.Height
Dim DarkGrey As Int = Colors.RGB(43,43,43)
Dim LightGrey As Int = Colors.RGB(204,204,204)
pnlAbout.Color = DarkGrey
WebView6.LoadUrl("file:///android_asset/about.html")
WebView6.Color = Colors.ARGB(255,43,43,43)
scvAbout.ScrollPosition = 0 'set position to the top
End Sub