I think you need to learn how Android works.
What an Activity is, what a layout is, the process life cycle etc.
It's different from VB.
In VB you have one Form one dedicated layout.
In Android, a layout is not dediceated to an Activity, they are completely independant.
You can, for example, have several Panels, each one with its specific layout, in a same Activiy.
You might read the Beginner's Guide:
Chapter 9 Process and Activity life cycle.
Chapter 14.2 Program with three Activities
You might also have a look at this thread:
Different examples with 2 layouts
To display text on Tab1 you should define a layout with a Label to display the text.
If you want the Tabs be always visible you should not start a new Activity, but use Panels covering only a part of the screen, on the Main activity, and set those visible or hidden.