Multiple Activity
This is how I accomplished the addition of an activity. In designer I created another Activity (FileName.Bal) and in this case I wanted to present a full screen log with a label overlay after a purchase. After gathering information and processing it I call the LoadLayout ("activitylogo")as mentioned in the other response
Sub delivery (rtext)
Activity.LoadLayout("activitylogo")
If rtext = "" Then
Label1.Text = " All Items Retrieved for" & CRLF & " Purchase" & Confirm & CRLF & " Thank You"
Return
Else
ImageView1.Initialize("")
Activity.AddView(ImageView1, 0, 0, 320, 480) ' ActivityLogo (second one).AddView(ImageView1 As android.view.View, Left As Int, Top As Int, Height As Int)
Label1.Text = rtext
End If
Return
End Sub
Hope it helps