1
I’m developing a simple app just to increase my knowledge, and I want to know how I can compare data between activities?
Example:
Activity1: In this Activity I have the variable A which has as value 1
Activity2: In this other one, I have the variable B which has as value 2
Activity3: And in this a variable C with the value 3
Now what I want to know, at Activity 0 when I enter the name of the variable A for example, it shows me its value and at the same time tell me what the lowest value is between the other variables of the others activities!
It would be important for you to look at the Activity cycle of android and analyze which one you need to use. I suggest reading: https://developer.android.com/guide/components/activities.html?hl=pt-br
– Gustavo Tinoco