Android Question Activity Module Limit?

Sanxion

Active Member
Licensed User
Longtime User
Hi all

Is there a limit to the number of 'Activity modules' (.bas files) that can be added? I ask because I have a project where I have a total of 11 but only 10 appear when I open the project in the designer.

The code in the 11th is still executed by the app but I have noticed that the app no longer shuts down correctly as it still appears in the list of running tasks - it then does not open when clicking on the app icon but only when the running app (in the background) is selected.

These two issues may not be related but I thought I would mention it as I did not have the problem prior to adding the 11th.

Thanks in advance.
 

LucaMs

Expert
Licensed User
Longtime User
Your eleventh Activity is only "hidden".

upload_2016-9-8_9-47-3.png



upload_2016-9-8_9-47-13.png
 
Last edited:
Upvote 0

LucaMs

Expert
Licensed User
Longtime User
I have noticed that the app no longer shuts down correctly as it still appears in the list of running tasks
To "close correctly" an app, I THINK you must close all the Activities using Activity.Finish and stop all services (StopService...) and use ExitApplication.

Despite this, in some devices (O.S. version), the app seems to be still active, but I think this is not true.

In addition, there may be still active services started by some library (?).
 
Last edited:
Upvote 0
Top