I download a zipped file with a Python program and extract informations from the file in the archive. After I use TC editor to see the contents of the final file.
I should want to launch TC from Python and better launch TC editor. I haven't found if it's possible to launch an application programmatically and then how to do. Is it possible? How?
In droid.startActivity, you would need to set the packagename and classname fields to:
com.ghisler.android.TotalCommander
com.ghisler.android.TotalCommander.TCEditActivity
A file name can be passed in the uri field. The action should be android.intent.action.VIEW.
Ok, I shall study these commands and do tests, I don't know them at all. I've found the same page you gave me but I don't understand the answer (I'm not easy in English), startActivity seems a little complex to use.
I've done tests but it doesn't work. In Fact Pydroid 3 doesn't use SL4A but Kivy. Qpython uses SL4A but my application doesn't work with Qpython which seems poorer and less recent.
I have to find how to launch an APK with Kivy even if there are more examples with SL4A.