I am designing a small app that will be entirely dialog based. The app will consist of a shallow hierchary of screens, a login screen, leading to a main menu then a number of other screens accesable from the main menu dialog.
The idea I have is to have a series of MODAL dialogs, to navigate from one dialog to another you press a button which kills the present dialog (EndDialog) and then instantiates a instance of the next required screen and displays it. In effect this means that I am constantly creating , destroying, recreating dialogs . Is there a better way to do this??
The idea I have is to have a series of MODAL dialogs, to navigate from one dialog to another you press a button which kills the present dialog (EndDialog) and then instantiates a instance of the next required screen and displays it. In effect this means that I am constantly creating , destroying, recreating dialogs . Is there a better way to do this??