I have 2 Activities - A and B. I have a non-static method something() in activity B. I need to call something() in activity A and something() cannot be declared as static. What is the best way to do it?
P.S. -something() doesn't start a new activity.It just performs a random action.