Android Question How to arrange your project

Sanxion

Active Member
Licensed User
Longtime User
Guys

I currently have a project which consists of a single layout that is loaded in Activity_Create: Activity.LoadLayout("Activity1")

Any code relevant to the first time the application is started is also present in Activity_Create

I want to now add a splash screen that will then display a menu - from that menu will be an option to begin "Activity1".

My question concerns how best to arrange the code - I assume the splash screen will have to be loaded in Activity_Create, but where should the remainder go?

Thank-you in advance.
 

Sanxion

Active Member
Licensed User
Longtime User
Thanks Erel.

Therefore:

1. In Activity_Create load the splash screen
2. In Activity_Create - create a new activity and load the 'Menu' layout
3. From the 'Menu' options - call each separate event

Is that correct?
 
Upvote 0
Top