Android Question How to determine if action has succeeded

sdixon

Member
Licensed User
Longtime User
How can I determine if an action has been completed successfully.

For instance

I have popups asking my users to share my app.
Once they have shared it a number of times I don't want to keep asking them to share.
However, I also don't want them to pretend share, that is, open the share dialog the required number of times and close it each time without sharing.
How can I determine that the action undertaken by the user was actually completed.

Thanks
 

sdixon

Member
Licensed User
Longtime User
How would one do that?

Is there an example I could follow:?

Thanks
 
Last edited:
Upvote 0

sdixon

Member
Licensed User
Longtime User
It is not possible. You get no feedback from the third party app.

All I want to know is if the third party app has been started. I'll have to hope that they finished the action, but at least I know that they started it.
Thanks

something like

if StartActivity(Intent) then
user started activity
else
user just looked
end if
 
Upvote 0
Top