Hi,
On looking at the B4A compiler generated Java code for an activity I found:
I have a library that requires me to extend the activity from another class, and also requires me to call:
But unfortunately I cannot see a way around it.
So, as an alternative solution,
is Activity_Resume always called on receipt of a new Intent, even if the activity is not paused? Maybe I can use that and GetStartingIntent?
Or is there any other way?
On looking at the B4A compiler generated Java code for an activity I found:
B4X:
@Override
public void onNewIntent(android.content.Intent intent) {
this.setIntent(intent);
}
B4X:
super.onNewIntent(intent)
So, as an alternative solution,
is Activity_Resume always called on receipt of a new Intent, even if the activity is not paused? Maybe I can use that and GetStartingIntent?
Or is there any other way?
Last edited: