Android Question Calling a new screen

Laurie

Member
Licensed User
Longtime User
I have a user screen built in Activity_Create - ie no layout. How can I call this from a launch screen?
 

JTmartins

Active Member
Licensed User
Longtime User
You created a layout without usinog Designer ? Is that what you mean ?

If you create a layout manually then you have to initialize every object and set the properties for each one of them
 
Upvote 0

Laurie

Member
Licensed User
Longtime User
Hi JT, not quite what I meant. My original screen works fine but I want to use a distribution (or menu screen) to access the original - and a couple of others. So, my problem is I don't know how to switch from my menu screen to the other three screens.
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Maybe with
B4X:
StartActivity(otherscreen)
?

More we cannot say due to this limited informations we have. It´s kind of guessing or looking into a wonderglass :D

Better is to export project as zip, upload it here and add detailed info about what you expect and what you think does not work or where you have problems with...
 
Upvote 0

Laurie

Member
Licensed User
Longtime User
OK, thanks for the response everyone. I now realise that screens are re-created from layout and/or code. I just needed to create modules and use StartActivity. Sometimes the obvious is strangely elusive!
 
Upvote 0
Top