Sub Activity_Create(FirstTime As Boolean)
Drawer.Initialize(Me, "Drawer", Activity, 300dip)
Drawer.CenterPanel.LoadLayout("1")
ToolbarHelper.Initialize
ToolbarHelper.ShowUpIndicator = True 'set to true to show the up arrow
Dim bd As BitmapDrawable
bd.Initialize(LoadBitmap(File.DirAssets, "hamburger.png"))
ToolbarHelper.UpIndicatorDrawable = bd
ACToolBarLight1.InitMenuListener
Drawer.LeftPanel.LoadLayout("Left")
' >>>>>>>>> START OF MODS <<<<<<<<<<<<<
If "pippo" <> "" Then
Wait For (testRSub) Complete (gotServer As Boolean) '<<- this call seems to cause the problem
End If
If 1 <> 0 Then '<<- breakpoint here FAILS
ListView1.AddSingleLine("Item ZeroZero" ) '<<- breakpoint here works
End If
' >>>>>>>>> END OF MODS <<<<<<<<<<<<<<<<<<
For i = 1 To 30
ListView1.AddSingleLine("Item " & i)
Next
End Sub
' >>> dummy resumable sub <<<
Sub testRSub() As ResumableSub
Dim retval As Boolean = False
Return retval
End Sub