passing variable data to non-activity classes

后端 未结 2 549
渐次进展
渐次进展 2021-01-29 06:43

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

2条回答
  •  太阳男子
    2021-01-29 07:15

    Create a class object in that activity class.

    MyClass mc = new MyClass();
    mc.yourVariable = "Your Value";
    

提交回复
热议问题