-1
I wonder if there is possibility to perform a certain function only when the Activity is called by another determined Activity specific. for example: Activity A
called the Activity B
, in this case perform the function Y
, but if the Activity C
call on Activity B
DO NOT perform the function Y
.
I don’t know how you want to implement this, but an option would be to pass parameters to the Activity C of the caller and link the execution of the Y function to the condition of this parameter.
– Reginaldo Rigo
Thanks my noble, I managed to solve. I thank you for your help!
– Rafael Costa