B4J Question Equivalent of AppStart is there a Appstop sub when app is closed

Pietro Pancino

Member
Licensed User
Longtime User
I'm sure it's very simple!!!
But is there an equivalent AppStop sub when application stop. I need to save some parameter before closing app.
kind of this:
sub AppStop ()
save_data_app()
log ("bye bye")
end sub
:) Pietro
 

DonManfred

Expert
Licensed User
Longtime User
Please use [CODE]code here...[/CODE] tags when posting code.

codetag001.png

codetag002.png

codetag003.png


There is no such thing as a AppStart sub in Android


Make sure to save them when a activity goes to pause.

Also check this:
 
Upvote 0
Top