It is clear: you need a unique Activity (Main) and some Dialogs over it.
You can not have two Activities simultaneously... active.
You can create the dialog as follows:
Create a transparent panel (full screen) in the Main, in which you put another panel that contains the view. Then you show or hide the "parent" (external) panel through the Visible property.
Grazie, Luca.
I do understand that 2 activities cannot be "active" at the same time. And precisely, I want ONLY one activity to be active - thus my reference to a "modal" form (in VBx language).
However, I do not want the Main Activity style to be transparent. The Main activity is Full Screen and No Title. I want the remaining activities, Act1, Act2, Act3 to be transparent, i.e., android:theme="@style/Theme.Transparent" for activities Act1, Act2, and Act3. I know I could achieve this effect by adding panels to Main and then show or hide them. However, I already have a lot of code in Main and I wanted to segment some of it in different activities. I also know I could create Class modules with the use of the "panels in the Main Activity" solution, but for me, creating a Class module would be a more significant learning curve (which I will attempt in the future).
I am able to recreate the Transparent activity project found in:
http://www.b4x.com/android/forum/threads/transparent-activity.16814/#post-98854
but I am unable to carry out the concept to the multi-activity case I just described.
Cordiali saluti,
Sandy