My app needs to redraw certain elements upon a button press.
I have created an algorithm which requires the following steps:
Some of the critical code is in Create and some of it is in Resume. So both need to be executed.
I have tried using:
But it does not recreate the activity.
Any suggestions.
I have created an algorithm which requires the following steps:
B4X:
'Button Pressed
'Do some stuff
'Save Activity Data
'Restart Activity
'Redraw Based on Previous Activity Data
Some of the critical code is in Create and some of it is in Resume. So both need to be executed.
I have tried using:
B4X:
Activity_Pause
'Within Pause
Activity_Create
But it does not recreate the activity.
Any suggestions.