What is the best way to pass variable data from an Activty to a non-Activty class? The data is created within the onCreate of the first
Activty
non-Activty
onCreate
Create a class object in that activity class.
MyClass mc = new MyClass(); mc.yourVariable = "Your Value";