Sebastian Neagrau
11/25/2020, 10:41 PMColton Idle
11/25/2020, 10:53 PMAdam Powell
11/25/2020, 11:02 PMos.system
to run other python scripts instead of importing stuff from them and calling it directly. Or on the web, kind of like creating an iframe to host some other code and posting messages back and forth. There are good reasons to set things up to be able to work that way, but it's a lot of complexity and a limited communication model that should be justified by the use caseSebastian Neagrau
11/25/2020, 11:06 PMMost apps contain multiple screens, which means they comprise multiple activities. Typically, one activity in an app is specified as the main activity, which is the first screen to appear when the user launches the app. Each activity can then start another activity in order to perform different actions. For example, the main activity in a simple e-mail app may provide the screen that shows an e-mail inbox.From there, the main activity might launch other activities that provide screens for tasks like writing e-mails and opening individual e-mails.
Colton Idle
11/25/2020, 11:24 PMSebastian Neagrau
11/25/2020, 11:39 PMAdam Powell
11/25/2020, 11:46 PM