Is there any way to implement multi threaded tasks in app inventor?

Hello Everyone,

Is there any way to implement multi threaded tasks in app inventor ?

for example ( like loading screen on front and at the same time , some read from database and save to database happening at that same time all running together ) ?

thank you in advance.

Hello Don

That's beyond the scope of App Inventor. Even though you can with the likes of Java and Kotlin, the developer's control is negligible on Android anyway as the App does not control the process. In short, nothing like you may be used to when programming on Windows.

1 Like

You might like to read:
Franklyn Turbak: PDF: Events-First Programming In App Inventor
CCSCNE14: PDF: Presentation re Events-First Programming In App Inventor

Linked with other useful information on my website:
https://www.professorcad.co.uk/appinventortips#TipsGeneral

1 Like
1 Like

it is possible with java -

1 Like

that's what i was looking for but for an easy way on app inventor

It isn't effective the way true multi-threading is on desktop PCs.

1 Like

How about the Activity Starter?
http://ai2.appinventor.mit.edu/reference/components/connectivity.html#ActivityStarter

It has a completion event and ways to keep track of the activities.
But it's up to you to manage a household full of all those sub-apps

1 Like