A few days ago, I published my application on the Android Marketplace, and a question arose during the development and development of the application. This question relates to limiting or limiting the number of activities.
For example, my application includes 37 activities. It's so much? I want to know about a game like Angry Birds, which has over 200 levels, has 200 activities? !!
My next question is: suppose I am developing an application that includes 100 activities. The user starts the application and gos in the last activity (for example, reading a book). If the user wants to close the application, what should he do? Press the back key 100 times on your device? If I want to put a close button (to help the user) in the options menu, do I need to repeat it for each action? because, as far as I know, each type of activity has its own menu.
If I click the close button in the last step, and the user clicks on it, the program closes. What will happen to the other 99 activities? do they still exist on the stack? or When I close the application, all actions associated with this package will be removed from the stack.
I read the action page published by Android , but I could not find the answers.
Sorry if the questions above are silly questions :) Thank you
Hesam source
share