can anyone guide me to the right direction, as the situation is have two classes calssA with Activity while classB is simple java class
1.classA has a editbox where the user inputs some value. 2.classB has a method that computes the user input.
need to get the user input value from classA to classB.
a).cannot get it through passing intent as the other class does not have activity. b).have tried getter setter method by creating a class thus,calling setter where the user inputs the detail. and calling the getter in another class.
Still the value is null, so what apparently is missing here.Any guidance to a example or brief explanation would be great.Thanks