Hi Roger
You have two options.
At first, you can add a webview to your current activity with visibility off and set visibility on at help.
Or, i would prefer, create a new activity with a webview.
Your first step, adding the html helpfile to the files folders, is already done. But i advise you to always use lower case filenames.
Then create a new activity and name it "Help".
Start the designer and create a new layout, name it "help". Add a WebView to the layout, full size and with horizontal and vertical anchor to BOTH. Name the WebView "helpfile" and save the layout. Use Tools->CreateMembers to add WebView variable to your current activity.
In your current activity set the menu item:
Sub Activity_Create(FirstTime As Boolean)
...
Activity.AddMenuItem("Help", "HelpFile")
...
End Sub
and the menu item event:
Sub HelpFile_Click
StartActivity(Help)
End Sub
Then in your helpfile activity:
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Help")
helpfile.LoadURL("file:///android_asset/helpfile.html")
End Sub