Hi
2 questions on intent:
1. Is there a way to determine if intent I called is still running or ended?
How?
2. My app calls intent, is there a way that intent will return data to my app?
Thanks
edit:
can any simple app run from another app?
i want my app to load another app (also mine) and wait in background until the loaded is done
as simple as that
whatever i try i get error that the second app is not found - it is installed on the phone...
it does not have to intent - any other way to load and run the second app will do
this is the code
2 questions on intent:
1. Is there a way to determine if intent I called is still running or ended?
How?
2. My app calls intent, is there a way that intent will return data to my app?
Thanks
edit:
can any simple app run from another app?
i want my app to load another app (also mine) and wait in background until the loaded is done
as simple as that
whatever i try i get error that the second app is not found - it is installed on the phone...
it does not have to intent - any other way to load and run the second app will do
this is the code
B4X:
Dim MyIntent As Intent
Try
MyIntent.Initialize(MyIntent.ACTION_VIEW, "")
MyIntent.SetType("MyAppName")
StartActivity(MyIntent)
Catch
Log("error: " & LastException.Message)
End Try
Last edited: